ZeevG / python-forecast.io

A thin Python Wrapper for the Dark Sky (formerly forecast.io) weather API
http://zeevgilovitz.com/python-forecast.io/
Other
424 stars 88 forks source link

alerts not updated #62

Open leoscholl opened 6 years ago

leoscholl commented 6 years ago

when a call to Forecast update() is made, the alerts don't seem to get updated

in init you have

        self._alerts = []
        for alertJSON in self.json.get('alerts', []):
            self._alerts.append(Alert(alertJSON))

but in update nothing happens to _alerts

is that on purpose?