From d823f13b9bbc353879076ccc878ef43ac5917944 Mon Sep 17 00:00:00 2001 From: Hans D Chaudry <62669434+HansChaudry@users.noreply.github.com> Date: Fri, 17 Jul 2026 08:10:10 -0400 Subject: [PATCH] Update missing method to include new value 149 for FOG --- python_weather/enums.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python_weather/enums.py b/python_weather/enums.py index cab0b5e..ae2c725 100644 --- a/python_weather/enums.py +++ b/python_weather/enums.py @@ -298,7 +298,7 @@ class Kind(BasicEnum): @classmethod def _missing_(cls, value: object) -> 'Kind | None': - if value in (248, 260): + if value in (149, 248, 260): return cls.FOG elif value in (263, 353): return cls.LIGHT_SHOWERS