forked from home-assistant/core
Merge pull request #246 from balloob/fix-forecastio
Fix sensor.forecastio with Fahrenheit values
This commit is contained in:
@@ -215,5 +215,6 @@ class ForeCastData(object):
|
|||||||
|
|
||||||
forecast = forecastio.load_forecast(self._api_key,
|
forecast = forecastio.load_forecast(self._api_key,
|
||||||
self.latitude,
|
self.latitude,
|
||||||
self.longitude)
|
self.longitude,
|
||||||
|
units='si')
|
||||||
self.data = forecast.currently()
|
self.data = forecast.currently()
|
||||||
|
Reference in New Issue
Block a user