Fix token refresh problems

This commit is contained in:
Andre Basche 2023-04-11 17:09:02 +02:00
parent b4b782c52c
commit 8c832b44cd
3 changed files with 11 additions and 7 deletions

View file

@ -5,7 +5,7 @@ def str_to_float(string):
try:
return int(string)
except ValueError:
return float(str(string.replace(",", ".")))
return float(str(string).replace(",", "."))
class HonParameter: