Compare commits

...

1 Commits

Author SHA1 Message Date
Andre Basche
7a5c99c167 Fix crash in loading attributs Andre0512/hon#134 2024-01-11 01:18:49 +01:00
2 changed files with 4 additions and 1 deletions

View File

@ -91,6 +91,9 @@ class HonCommand:
def _load_parameters(self, attributes: Dict[str, Dict[str, Any]]) -> None:
for key, items in attributes.items():
if not isinstance(items, dict):
_LOGGER.info("Loading Attributes - Skipping %s", str(items))
continue
for name, data in items.items():
self._create_parameters(data, name, key)
for rule in self._rules:

View File

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