Skip to content

Commit

Permalink
Update town.py
Browse files Browse the repository at this point in the history
  • Loading branch information
Noltari authored Aug 23, 2023
1 parent a959ab9 commit 8111888
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions aemet_opendata/town.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,12 +51,16 @@ def update_daily(self, data: dict[str, Any]) -> None:
"""Update Town daily forecast."""
daily: list[Any] = []

_LOGGER.debug(data)

self.daily = daily

def update_hourly(self, data: dict[str, Any]) -> None:
"""Update Town hourly forecast."""
hourly: list[Any] = []

_LOGGER.debug(data)

self.hourly = hourly

def data(self) -> dict[str, Any]:
Expand Down

0 comments on commit 8111888

Please sign in to comment.