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 e91a3bb commit 15aff42Copy full SHA for 15aff42
plugwise/data.py
@@ -332,7 +332,11 @@ def _get_schedule_states_with_off(
332
"""
333
self._schedule_old_states[location] = {}
334
for schedule in schedules:
335
- self._schedule_old_states[location][schedule] = "on" if schedule == selected and data["climate_mode"] == "auto" else "off"
+ self._schedule_old_states[location][schedule] = (
336
+ "on"
337
+ if schedule == selected and data["climate_mode"] == "auto"
338
+ else "off"
339
+ )
340
341
all_off = True
342
for state in self._schedule_old_states[location].values():
0 commit comments