diff --git a/homeassistant/components/frontend/www_static/home-assistant-polymer b/homeassistant/components/frontend/www_static/home-assistant-polymer index 300f3582a61..c130933f452 160000 --- a/homeassistant/components/frontend/www_static/home-assistant-polymer +++ b/homeassistant/components/frontend/www_static/home-assistant-polymer @@ -1 +1 @@ -Subproject commit 300f3582a61b5781431778cd2f44bef05d49baf3 +Subproject commit c130933f45262dd1c7b4fd75d23a90c132fb271f diff --git a/homeassistant/components/thermostat/heat_control.py b/homeassistant/components/thermostat/heat_control.py index 7c8db91265b..7e560a2276f 100644 --- a/homeassistant/components/thermostat/heat_control.py +++ b/homeassistant/components/thermostat/heat_control.py @@ -111,19 +111,21 @@ class HeatControl(ThermostatDevice): @property def min_temp(self): """ Return minimum temperature. """ + # pylint: disable=no-member if self._min_temp: return self._min_temp else: - # pylint: disable=no-member + # get default temp from super class return ThermostatDevice.min_temp.fget(self) @property def max_temp(self): """ Return maximum temperature. """ + # pylint: disable=no-member if self._min_temp: return self._max_temp else: - # pylint: disable=no-member + # get default temp from super class return ThermostatDevice.max_temp.fget(self) def _sensor_changed(self, entity_id, old_state, new_state):