Fix copy/paste logic error
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…
Reference in New Issue