Skip to content

Commit

Permalink
fix: invalid operation mode in status
Browse files Browse the repository at this point in the history
  • Loading branch information
EuleMitKeule committed Jan 24, 2024
1 parent 54fda27 commit e98de7e
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions custom_components/eq3btsmart/climate.py
Original file line number Diff line number Diff line change
Expand Up @@ -243,9 +243,6 @@ def hvac_mode(self) -> HVACMode | None:
if self._thermostat.status.operation_mode is None:
return None

if self._thermostat.status.target_temperature == EQ3BT_OFF_TEMP:
return HVACMode.OFF

return EQ_TO_HA_HVAC[self._thermostat.status.operation_mode]

async def async_set_hvac_mode(self, hvac_mode: HVACMode) -> None:
Expand Down

0 comments on commit e98de7e

Please sign in to comment.