From 4ed5f834bde3bf0ddb32f652ee7299bea23616ea Mon Sep 17 00:00:00 2001 From: SpudGunMan Date: Thu, 13 Jun 2024 10:36:35 -0700 Subject: [PATCH] Update pong-bot.py --- pong-bot.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pong-bot.py b/pong-bot.py index 4285d8c..bb62f95 100644 --- a/pong-bot.py +++ b/pong-bot.py @@ -52,7 +52,8 @@ def auto_response(message,snr,rssi): else: bot_response = MOTD elif "sun" in message.lower(): - bot_response = "Sunrise: " + get_sunrise_sunset()[0] + "\nSunset: " + get_sunrise_sunset()[1] + suntime = get_sunrise_sunset() + bot_response = "Sunrise: " + suntime()[0] + "\nSunset: " + suntime()[1] elif "hfcond" in message.lower(): bot_response = hf_band_conditions() elif "solar" in message.lower():