diff --git a/__pycache__/iconSelector.cpython-311.pyc b/__pycache__/iconSelector.cpython-311.pyc index e4fdbc7..9136fbf 100644 Binary files a/__pycache__/iconSelector.cpython-311.pyc and b/__pycache__/iconSelector.cpython-311.pyc differ diff --git a/iconSelector.py b/iconSelector.py index 2ae753e..b9e4b87 100644 --- a/iconSelector.py +++ b/iconSelector.py @@ -4,6 +4,7 @@ rainWords = ["rain", "showers"] fogWords = ["fog", "mist", "smoke"] windWords = ["wind", "windy", "gusts"] cloudWords = ["cloudy", "overcast"] +stormWords = ["thunderstorms", "thunderstorm"] def parseDescription(desc): @@ -25,6 +26,8 @@ def parseDescription(desc): return "wind" elif i in cloudWords: return "cloudy" + elif i in stormWords: + return "thunderstorm" else: return "clear"