Files
mega_hacs/custom_components/mega/tools.py
2021-01-25 21:35:06 +03:00

10 lines
215 B
Python

def make_ints(d: dict):
for x in d:
try:
d[x] = float(d[x])
except ValueError:
pass
if 'm' not in d:
d['m'] = 0
if 'click' not in d:
d['click'] = 0