in drop_eval.py [0:0]
def _is_number(text: str) -> bool: try: float(text) return True except ValueError: return False