mirror of
https://github.com/andvikt/mega_hacs.git
synced 2025-12-11 17:14:28 +05:00
10 lines
228 B
Python
10 lines
228 B
Python
def make_ints(d: dict):
|
|
for x in d:
|
|
try:
|
|
d[x] = float(d[x])
|
|
except (ValueError, TypeError):
|
|
pass
|
|
if 'm' not in d:
|
|
d['m'] = 0
|
|
if 'click' not in d:
|
|
d['click'] = 0 |