diff --git a/python_weather/constants.py b/python_weather/constants.py index 6266132..346400f 100644 --- a/python_weather/constants.py +++ b/python_weather/constants.py @@ -45,5 +45,6 @@ def __repr__(self) -> str: '❄️', '🌩', '⛈', + '🌫', ) WIND_DIRECTION_EMOJIS = '↑', '↖', '←', '↙', '↓', '↘', '→', '↗' diff --git a/python_weather/enums.py b/python_weather/enums.py index cab0b5e..e3c079f 100644 --- a/python_weather/enums.py +++ b/python_weather/enums.py @@ -295,6 +295,7 @@ class Kind(BasicEnum): HEAVY_SNOW_SHOWERS = 335 THUNDERY_HEAVY_RAIN = 389 THUNDERY_SNOW_SHOWERS = 392 + SMOKY_HAZE = 149 @classmethod def _missing_(cls, value: object) -> 'Kind | None': diff --git a/tests/test_enums.py b/tests/test_enums.py index b7c2ce8..98a5a93 100644 --- a/tests/test_enums.py +++ b/tests/test_enums.py @@ -34,6 +34,7 @@ def test_HeatIndex_works(index: int) -> None: 119, 122, 143, + 149, 176, 179, 182,