From bbed4a262cef1acc305d08d670c275115140c7b8 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sun, 18 Oct 2015 18:22:05 +0200 Subject: [PATCH] Fix typo --- homeassistant/components/thermostat/heat_control.py | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/homeassistant/components/thermostat/heat_control.py b/homeassistant/components/thermostat/heat_control.py index c1dab1173d7..f14d1b16f16 100644 --- a/homeassistant/components/thermostat/heat_control.py +++ b/homeassistant/components/thermostat/heat_control.py @@ -192,9 +192,7 @@ class HeatControl(ThermostatDevice): @property def is_away_mode_on(self): - """ - Returns if away mode is on. - """ + """ Returns if away mode is on. """ return self._away def turn_away_mode_on(self): @@ -212,5 +210,5 @@ class HeatControl(ThermostatDevice): @property def max_temp(self): - """ Return maxmum temperature. """ + """ Return maximum temperature. """ return self._max_temp