in type_check.py [0:0]
def convert_type(param): try: param = int(param) except ValueError: param = float(param) return param