diff --git a/homeassistant/components/climate/sensibo.py b/homeassistant/components/climate/sensibo.py index 7b4c8ed8b1b..68b5eee35ef 100644 --- a/homeassistant/components/climate/sensibo.py +++ b/homeassistant/components/climate/sensibo.py @@ -240,13 +240,13 @@ class SensiboClimate(ClimateDevice): def min_temp(self): """Return the minimum temperature.""" return self._temperatures_list[0] \ - if self._temperatures_list else super().min_temp() + if self._temperatures_list else super().min_temp @property def max_temp(self): """Return the maximum temperature.""" return self._temperatures_list[-1] \ - if self._temperatures_list else super().max_temp() + if self._temperatures_list else super().max_temp @asyncio.coroutine def async_set_temperature(self, **kwargs):