We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d2e0808 commit 6f4964dCopy full SHA for 6f4964d
plugwise/util.py
@@ -92,8 +92,7 @@ def check_heater_central(xml: etree) -> str:
92
heater_central.find("actuator_functionalities/") is not None
93
)
94
# Filter for Plug/Circle/Stealth heater_central
95
- hc_name = heater_central.find("name").text
96
- if hc_name == "Central heating boiler":
+ if heater_central.find("name").text == "Central heating boiler":
97
hc_list.append({hc_id: has_actuators})
98
99
heater_central_id = list(hc_list[0].keys())[0]
0 commit comments