diff --git a/homeassistant/components/weather/yweather.py b/homeassistant/components/weather/yweather.py index 514eda0f09f640..a043f3c22123cd 100644 --- a/homeassistant/components/weather/yweather.py +++ b/homeassistant/components/weather/yweather.py @@ -115,7 +115,7 @@ def condition(self): @property def temperature(self): """Return the temperature.""" - return self._data.yahoo.Now['temp'] + return int(self._data.yahoo.Now['temp']) @property def temperature_unit(self):