mirror of
https://github.com/home-assistant/core.git
synced 2025-07-14 00:37:13 +00:00
Fix copy/paste logic error
This commit is contained in:
parent
942d722dcf
commit
1685bbe1f7
@ -93,7 +93,7 @@ class NestThermostat(ThermostatDevice):
|
|||||||
if (self.device.structure.weather.current.temperature <
|
if (self.device.structure.weather.current.temperature <
|
||||||
self.current_temperature):
|
self.current_temperature):
|
||||||
temp = low
|
temp = low
|
||||||
elif self.current_temperature >= range_average:
|
else:
|
||||||
temp = high
|
temp = high
|
||||||
else:
|
else:
|
||||||
if self.is_away_mode_on:
|
if self.is_away_mode_on:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user