diff --git a/aiocloudweather/server.py b/aiocloudweather/server.py index 318c82b..e7b66ea 100644 --- a/aiocloudweather/server.py +++ b/aiocloudweather/server.py @@ -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] = []