diff --git a/src/aag/settings.py b/src/aag/settings.py index 5cd818b..48ae965 100644 --- a/src/aag/settings.py +++ b/src/aag/settings.py @@ -37,8 +37,8 @@ class WeatherSettings(BaseSettings): capture_delay: float = 30 # seconds num_readings: int = 10 ignore_unsafe: bool | None = None # None, otherwise can be a list, e.g. 'rain','cloud','gust','wind' - thresholds = Thresholds() - heater = Heater() + thresholds: Thresholds = Thresholds() + heater: Heater = Heater() class Config: env_prefix = 'AAG_'