Skip to content

Commit 1e51c42

Browse files
committed
Try 3
1 parent f4ebcd5 commit 1e51c42

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

plugwise/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ async def connect(self) -> Version:
122122
result = await self._request(DOMAIN_OBJECTS)
123123
result_str = etree.tostring(result, encoding='utf-8', method='xml')
124124
result_dict = dict(xmltodict.parse(result_str))
125-
LOGGER.debug("HOI result_dict: %s", result_dict)
125+
LOGGER.debug("HOI result_dict: %s", json.dumps(result_dict, indent=4))
126126
# Work-around for Stretch fw 2.7.18
127127
if not (vendor_names := result.findall("./module/vendor_name")):
128128
result = await self._request(MODULES)

pyproject.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@ dependencies = [
2929
"aiofiles",
3030
"aiohttp",
3131
"defusedxml",
32-
"json",
3332
"munch",
3433
"python-dateutil",
3534
"xmltodict",

0 commit comments

Comments
 (0)