From 28951df9b559095f0c077d16363d14f1bfd75701 Mon Sep 17 00:00:00 2001 From: shmyga Date: Thu, 2 Jul 2026 14:17:48 +0300 Subject: [PATCH] fix(openweather): optional visability field in forecast model --- gallery/painting/openweather/openweather.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gallery/painting/openweather/openweather.py b/gallery/painting/openweather/openweather.py index ac6a149..00fd68a 100644 --- a/gallery/painting/openweather/openweather.py +++ b/gallery/painting/openweather/openweather.py @@ -53,7 +53,7 @@ class ForecastItem(Model): weather: list[Weather] clouds: Clouds wind: Wind - visibility: int + visibility: int | None = None pop: float rain: Rain | None = None sys: Sys