Files
pytiled_parser/old_pytiled_parser/typing_helpers.py
Benjamin Kirkbride 4ff013c1f8 RESET
big time reset, we are not using TMX anymore, but instead using the JS 
format because it is way simpler to parse
2020-05-01 19:19:08 -04:00

7 lines
135 B
Python

def is_float(string: str):
try:
float(string)
return True
except (ValueError, TypeError):
return False