Fix float convertion

This commit is contained in:
Andre Basche 2023-04-10 18:48:12 +02:00
parent 7c49589944
commit 79c9678492
2 changed files with 5 additions and 2 deletions

View File

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

View File

@ -7,7 +7,7 @@ with open("README.md", "r") as f:
setup(
name="pyhOn",
version="0.6.1",
version="0.6.2",
author="Andre Basche",
description="Control hOn devices with python",
long_description=long_description,