We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2041ff7 commit c43d804Copy full SHA for c43d804
plugwise/__init__.py
@@ -122,6 +122,8 @@ async def connect(self) -> Version:
122
result = await self._request(DOMAIN_OBJECTS)
123
result_str = etree.tostring(result, encoding="utf-8", method="xml")
124
result_dict = dict(xmltodict.parse(result_str, attr_prefix=""))
125
+ for key in ["ame_regulation", "template"]:
126
+ result_dict["domain_objects"].pop(key, None)
127
LOGGER.debug("HOI result_dict: %s", json.dumps(result_dict, indent=4))
128
# Work-around for Stretch fw 2.7.18
129
if not (vendor_names := result.findall("./module/vendor_name")):
0 commit comments