Files
D0CXUN7R4C3/modules/helpers/convert.py
BarsTiger 13b48be802 First working release.
Other files (not .docx) support is not guaranteed
2023-02-06 21:40:47 +02:00

7 lines
123 B
Python

def Int(s: str) -> int | None:
try:
return int(s)
except Exception as e:
assert e
return 0