big time reset, we are not using TMX anymore, but instead using the JS 
format because it is way simpler to parse
This commit is contained in:
Benjamin Kirkbride
2020-05-01 19:19:08 -04:00
parent 03d70163f4
commit 4ff013c1f8
23 changed files with 87 additions and 4 deletions

View File

@@ -0,0 +1,6 @@
def is_float(string: str):
try:
float(string)
return True
except (ValueError, TypeError):
return False