irt-service/app/helpers/common_helper.py

15 lines
233 B
Python

def boolean_to_int(value: bool) -> int:
if value:
return 1
else:
return 0
def is_float(element: str) -> bool:
try:
float(element)
return True
except ValueError:
return False