in src/guclimate/core/parse_input.py [0:0]
def parseInteger(input: str): try: return str(int(input)).zfill(2) except ValueError: return None