From e2af31b81275b31eeb5ea7e151fd1314c18e3f8b Mon Sep 17 00:00:00 2001 From: shmyga Date: Wed, 22 Jul 2026 21:52:15 +0300 Subject: [PATCH] fix(gismeteo): fix empty wind direction value in parser --- gallery/painting/gismeteo/parser.py | 1 + 1 file changed, 1 insertion(+) diff --git a/gallery/painting/gismeteo/parser.py b/gallery/painting/gismeteo/parser.py index 9a118a9..f7e3fa6 100644 --- a/gallery/painting/gismeteo/parser.py +++ b/gallery/painting/gismeteo/parser.py @@ -148,6 +148,7 @@ class WindDirectionParser(RowParser[WindDirection]): WIND_DIRECTION_MAP: dict[str, WindDirection] = { "—": WindDirection.CALM, + "": WindDirection.CALM, "штиль": WindDirection.CALM, "с": WindDirection.N, "св": WindDirection.NE,