Skip to content

Commit e5f566e

Browse files
committed
Fix wrong typing
1 parent f31fd6b commit e5f566e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

plugwise/helper.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -508,7 +508,7 @@ def _check_heater_central(self) -> str:
508508
"""
509509
locator = "./appliance[type='heater_central']"
510510
hc_count = 0
511-
hc_list: list[dict[str, str]] = []
511+
hc_list: list[dict[str, bool]] = []
512512
for heater_central in self._appliances.findall(locator):
513513
hc_count += 1
514514
hc_id: str = heater_central.attrib["id"]

0 commit comments

Comments
 (0)