diff --git a/homeassistant/components/sensor/wunderground.py b/homeassistant/components/sensor/wunderground.py index 4e94249f199..b71510792cf 100644 --- a/homeassistant/components/sensor/wunderground.py +++ b/homeassistant/components/sensor/wunderground.py @@ -127,11 +127,13 @@ class WUndergroundSensor(Entity): class WUndergroundData(object): """Get data from Wundeground.""" - def __init__(self, resource, pws_id, api_key, data): + def __init__(self, hass, api_key, pws_id=None): """Initialize the data object.""" - self._resource = resource + self._hass = hass self._api_key = api_key self._pws_id = pws_id + self._latitude = hass.config.latitude + self._longitude = hass.config.longitude self.data = None def _build_url(self):