From 62bb37793cdc29c0dce935cecf03c7344a2569f1 Mon Sep 17 00:00:00 2001 From: Lennart Weller Date: Sun, 2 Jun 2024 20:46:43 +0000 Subject: [PATCH] chore: fix formatting --- aiocloudweather/server.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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] = []