From 8b0c048faaa07a58c98cf3e1d328c54ba2aca665 Mon Sep 17 00:00:00 2001 From: SpudGunMan Date: Wed, 19 Jun 2024 23:31:36 -0700 Subject: [PATCH] Update solarconditions.py --- solarconditions.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/solarconditions.py b/solarconditions.py index e07b754..251f85d 100644 --- a/solarconditions.py +++ b/solarconditions.py @@ -122,7 +122,7 @@ def get_moon(lat=0, lon=0): moon_table['next_new_moon'] = local_next_new_moon.strftime('%a %b %d %I:%M%p') moon_data = f"Moon Rise:" + moon_table['rise_time'] + "\nSet:" + moon_table['set_time'] + \ - "\nMoon Phase:" + moon_table['phase'] + " @:" + str('{0:.2f}'.format(moon_table['illumination'])) + "%" \ - + "\nNext Full Moon:" + moon_table['next_full_moon'] + "\nNext New Moon:" + moon_table['next_new_moon'] + "\nPhase:" + moon_table['phase'] + " @:" + str('{0:.2f}'.format(moon_table['illumination'])) + "%" \ + + "\nFull Moon:" + moon_table['next_full_moon'] + "\nNew Moon:" + moon_table['next_new_moon'] return moon_data \ No newline at end of file