(val: str)
| 33 | |
| 34 | @staticmethod |
| 35 | def parse_int(val: str) -> Optional[int]: |
| 36 | try: |
| 37 | return int("".join(filter(str.isdigit, val))) |
| 38 | except ValueError: |
| 39 | return None |
| 40 | |
| 41 | """ |
| 42 | If any argument of this function is none, it throws MissingDataException |
no outgoing calls
no test coverage detected