Skip to content

Commit b9c9587

Browse files
committed
Fix comments seen as commented-out code
1 parent 83e8232 commit b9c9587

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

plugwise/helper.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -372,7 +372,7 @@ def _appliance_info_finder(self, appl: Munch, appliance: etree) -> Munch:
372372
return self._appl_thermostat_info(appl, appliance)
373373
case "heater_central":
374374
# Collect heater_central device info
375-
self._appl_heater_central_info(appl, appliance, False) # False = not legacy
375+
self._appl_heater_central_info(appl, appliance, False) # False means non-legacy device
376376
self._appl_dhw_mode_info(appl, appliance)
377377
return appl
378378
case _:

plugwise/legacy/helper.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,7 @@ def _appliance_info_finder(self, appliance: etree, appl: Munch) -> Munch:
210210
case "heater_central":
211211
return self._appl_heater_central_info(
212212
appl, appliance, True, self._appliances, self._modules
213-
) # True = legacy
213+
) # True means legacy device
214214
# Collect info from Stretches
215215
case _:
216216
return self._energy_device_info_finder(appliance, appl)

0 commit comments

Comments
 (0)