Compare commits

...

1 Commits

Author SHA1 Message Date
dfbc24452b Fix value check 2023-05-16 21:26:24 +02:00
2 changed files with 2 additions and 2 deletions

View File

@ -9,7 +9,7 @@ class HonParameterEnum(HonParameter):
self._default = attributes.get("defaultValue")
self._value = self._default or "0"
self._values: List[str] = attributes.get("enumValues", [])
if self._default and self._default not in self._values:
if self._default and str(self._default) not in self.values:
self._values.append(self._default)
def __repr__(self) -> str:

View File

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