We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0089a5b commit 9f349d6Copy full SHA for 9f349d6
custom_components/plugwise/climate.py
@@ -227,7 +227,7 @@ def hvac_modes(self) -> list[HVACMode]:
227
if self.device.get(AVAILABLE_SCHEDULES, []):
228
hvac_modes.append(HVACMode.AUTO)
229
schedule = self.device.get("select_schedule")
230
- if schedule is not None and (schedule != NONE or schedule != "off"):
+ if schedule is not None and schedule != NONE and schedule != "off":
231
self._last_active_schedule = schedule
232
233
if self.coordinator.api.cooling_present:
0 commit comments