First working release.
Other files (not .docx) support is not guaranteed
This commit is contained in:
6
modules/helpers/convert.py
Normal file
6
modules/helpers/convert.py
Normal file
@@ -0,0 +1,6 @@
|
||||
def Int(s: str) -> int | None:
|
||||
try:
|
||||
return int(s)
|
||||
except Exception as e:
|
||||
assert e
|
||||
return 0
|
||||
Reference in New Issue
Block a user