We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f4ebcd5 commit 1e51c42Copy full SHA for 1e51c42
2 files changed
plugwise/__init__.py
@@ -122,7 +122,7 @@ 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))
125
- LOGGER.debug("HOI result_dict: %s", result_dict)
+ LOGGER.debug("HOI result_dict: %s", json.dumps(result_dict, indent=4))
126
# Work-around for Stretch fw 2.7.18
127
if not (vendor_names := result.findall("./module/vendor_name")):
128
result = await self._request(MODULES)
pyproject.toml
@@ -29,7 +29,6 @@ dependencies = [
29
"aiofiles",
30
"aiohttp",
31
"defusedxml",
32
- "json",
33
"munch",
34
"python-dateutil",
35
"xmltodict",
0 commit comments