Files
irt-service/app/helpers/common_helper.py
2022-03-22 18:28:56 +00:00

6 lines
98 B
Python

def boolean_to_int(value: bool) -> int:
if value:
return 1
else:
return 0