Fix yweather (#10661)

This commit is contained in:
Lukas Barth 2017-11-18 23:33:18 +01:00 committed by Paulus Schoutsen
parent 6ad62a2ccb
commit 086f64b06c

View File

@ -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):