From 1d3385861fc36a498ebab4f19948ff5d9d4f06f1 Mon Sep 17 00:00:00 2001 From: SpudGunMan Date: Wed, 19 Jun 2024 21:51:53 -0700 Subject: [PATCH] Update solarconditions.py --- solarconditions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/solarconditions.py b/solarconditions.py index 37b016c..5359f1e 100644 --- a/solarconditions.py +++ b/solarconditions.py @@ -91,7 +91,7 @@ def get_sun(lat=0, lon=0): local_sunset = ephem.localtime(obs.next_setting(sun)) sun_table['rise_time'] = local_sunrise.strftime('%a %d %I:%M') sun_table['set_time'] = local_sunset.strftime('%a %d %I:%M') - sun_data = f"Next Sun Rise: " + sun_table['rise_time'] + "\nSet: " + sun_table['set_time'] + sun_data = f"Sun Rise: " + sun_table['rise_time'] + "\nSet: " + sun_table['set_time'] return sun_data def get_moon(lat=0, lon=0):