Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions python_weather/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,5 +45,6 @@ def __repr__(self) -> str:
'❄️',
'🌩',
'⛈',
'🌫',
)
WIND_DIRECTION_EMOJIS = '↑', '↖', '←', '↙', '↓', '↘', '→', '↗'
1 change: 1 addition & 0 deletions python_weather/enums.py
Original file line number Diff line number Diff line change
Expand Up @@ -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':
Expand Down
1 change: 1 addition & 0 deletions tests/test_enums.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ def test_HeatIndex_works(index: int) -> None:
119,
122,
143,
149,
176,
179,
182,
Expand Down
Loading