From 1bdf2e90fcce9457192724ecf1cd98bb467a647f Mon Sep 17 00:00:00 2001 From: Don Harper Date: Sun, 7 Jul 2024 21:48:21 -0500 Subject: [PATCH] weather.py 'fix' temp unit display --- home/gui/files/sway/weather.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/home/gui/files/sway/weather.py b/home/gui/files/sway/weather.py index e4fc3b0..b26522a 100755 --- a/home/gui/files/sway/weather.py +++ b/home/gui/files/sway/weather.py @@ -320,7 +320,7 @@ tooltip_text = f"{cu + daily_forecast out_data = { - "text": f"{current_icon} {current_temp} °C", + "text": f"{current_icon} {current_temp} °F", "class": current_status_code, "alt": current_desc, "tooltip": tooltip_text