Skip to content

Commit 0460c31

Browse files
committed
Try again
1 parent 42ea514 commit 0460c31

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

plugwise/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -120,8 +120,8 @@ async def connect(self) -> Version:
120120
"""Connect to the Plugwise Gateway and determine its name, type, version, and other data."""
121121
result = await self._request(DOMAIN_OBJECTS)
122122
LOGGER.debug("HOI result: %s", result)
123-
# result_dict = xmltodict.parse(DOMAIN_OBJECTS)
124-
# LOGGER.debug("HOI result_dict: %s", result_dict)
123+
result_dict = xmltodict.parse(DOMAIN_OBJECTS)
124+
LOGGER.debug("HOI result_dict: %s", result_dict)
125125
# Work-around for Stretch fw 2.7.18
126126
if not (vendor_names := result.findall("./module/vendor_name")):
127127
result = await self._request(MODULES)

0 commit comments

Comments
 (0)