From 09a0b8b2bfb297f5fde6181059b7d07687c1e75a Mon Sep 17 00:00:00 2001 From: Neythen Treloar <33317183+zcqsntr@users.noreply.github.com> Date: Mon, 11 Apr 2022 16:53:41 +0100 Subject: [PATCH] weather fix --- stockTicker.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stockTicker.py b/stockTicker.py index 50ddbaa..dfd3a44 100755 --- a/stockTicker.py +++ b/stockTicker.py @@ -2333,7 +2333,7 @@ class StockTicker(): weather_img = Image.open(weather_dir + '/weather_type_icons/' + weather_ids[main] + '.png') - temp = daily_weather[0]['temp'] + temp = self.convertTemp(daily_weather[0]['temp'], daily_weathers['temp'])) min_temp = self.convertTemp(daily_weather[0]['min_temp'], daily_weathers['temp']) max_temp = self.convertTemp(daily_weather[0]['max_temp'], daily_weathers['temp'])