Skip to content

Commit c2ecd09

Browse files
author
autoruff
committed
fixup: xml_to_dict Python code fixed using ruff
1 parent c301860 commit c2ecd09

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

plugwise/__init__.py

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -128,8 +128,12 @@ async def connect(self) -> Version:
128128
for module in result_dict["domain_objects"]["module"]:
129129
LOGGER.debug("HOI vendor_name: %s", module["vendor_name"] or "null")
130130
LOGGER.debug("HOI vendor_model: %s", module["vendor_model"] or "null")
131-
LOGGER.debug("HOI hardware_version: %s", module["hardware_version"] or "null")
132-
LOGGER.debug("HOI firmware_version: %s", module["firmware_version"] or "null")
131+
LOGGER.debug(
132+
"HOI hardware_version: %s", module["hardware_version"] or "null"
133+
)
134+
LOGGER.debug(
135+
"HOI firmware_version: %s", module["firmware_version"] or "null"
136+
)
133137
if module["services"] is not None:
134138
for value in module["services"].values():
135139
if isinstance(value, list):

0 commit comments

Comments
 (0)