Skip to content
Merged
Changes from 1 commit
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
2 changes: 1 addition & 1 deletion python_weather/enums.py
Original file line number Diff line number Diff line change
Expand Up @@ -298,7 +298,7 @@ class Kind(BasicEnum):

@classmethod
def _missing_(cls, value: object) -> 'Kind | None':
if value in (248, 260):
Comment thread
HansChaudry marked this conversation as resolved.
if value in (149, 248, 260):
return cls.FOG
elif value in (263, 353):
return cls.LIGHT_SHOWERS
Expand Down