in prm800k/grading/grader.py [0:0]
def _is_int(x: float) -> bool: try: return abs(x - int(round(x))) <= 1e-7 except: return False