diff --git a/homeassistant/components/weather/yweather.py b/homeassistant/components/weather/yweather.py index 514eda0f09f..a043f3c2212 100644 --- a/homeassistant/components/weather/yweather.py +++ b/homeassistant/components/weather/yweather.py @@ -115,7 +115,7 @@ class YahooWeatherWeather(WeatherEntity): @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):