Skip to content

Commit

Permalink
chore: fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
lhw committed Jun 2, 2024
1 parent da1d887 commit 62bb377
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion aiocloudweather/server.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,9 @@ def __init__(self, port: int = _CLOUDWEATHER_LISTEN_PORT):
# internal data
self.last_values: dict[str, WeatherStation] = {}
self.last_updates: dict[str, float] = {}
self.new_dataset_cb: list[Callable[[WeatherStation], Coroutine[Any, Any, Any]]] = []
self.new_dataset_cb: list[
Callable[[WeatherStation], Coroutine[Any, Any, Any]]
] = []

# storage
self.stations: list[str] = []
Expand Down

0 comments on commit 62bb377

Please sign in to comment.