mirror of
https://github.com/Andre0512/pyhOn.git
synced 2025-05-14 15:14:28 -04:00
Fix token refresh problems
This commit is contained in:
parent
b4b782c52c
commit
8c832b44cd
3 changed files with 11 additions and 7 deletions
|
@ -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:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue