Skip to content

Commit

Permalink
Fix yweather (#10661)
Browse files Browse the repository at this point in the history
  • Loading branch information
tinloaf authored and balloob committed Nov 18, 2017
1 parent 6ad62a2 commit 086f64b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion homeassistant/components/weather/yweather.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down

0 comments on commit 086f64b

Please sign in to comment.