Skip to content

Commit

Permalink
error setting temp
Browse files Browse the repository at this point in the history
  • Loading branch information
msp1974 committed Mar 1, 2023
1 parent 75ea266 commit af6193e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion custom_components/wiser/climate.py
Original file line number Diff line number Diff line change
Expand Up @@ -532,7 +532,7 @@ def target_temperature_low(self) -> float | None:

async def async_set_temperature(self, **kwargs):
"""Set new target temperatures."""
if self._is_passive_mode and not self._room.is_boosted:
if self._room.is_passive_mode and not self._room.is_boosted:
if kwargs.get("target_temp_low", None):
await self._room.set_passive_mode_lower_temp(
kwargs.get("target_temp_low")
Expand Down

0 comments on commit af6193e

Please sign in to comment.