Fix value check

v0.12 v0.10.8
Andre Basche 1 year ago
parent af4fbdd8cd
commit dfbc24452b

@ -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:

@ -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,

Loading…
Cancel
Save