adding weather emoji for fog

This commit is contained in:
2024-08-09 08:46:24 -07:00
parent 6f15c86181
commit 0472c796b2

View File

@@ -28,6 +28,7 @@ def get_weather_icon(description):
"mist": "🌫️",
"haze": "🌫️",
"smoke": "🌫️",
"fog": "🌫️",
}
return icons.get(description, "")