openreplay/ee/api/chalicelib/utils/args_transformer.py
KRAIEM Taha Yassine 282cb4642c API
2021-05-05 19:47:36 +02:00

10 lines
164 B
Python

def int_arg(x):
return int(x) if x is not None else int(0)
def float_arg(x):
return float(x) if x is not None else float(0)
def string(x):
return x