From e3287195d663c6963bf7d5a6e1e0292db8b442c9 Mon Sep 17 00:00:00 2001 From: SpudGunMan Date: Wed, 19 Jun 2024 23:29:47 -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 82a6137..e07b754 100644 --- a/solarconditions.py +++ b/solarconditions.py @@ -121,8 +121,8 @@ def get_moon(lat=0, lon=0): moon_table['next_full_moon'] = local_next_full_moon.strftime('%a %b %d %I:%M%p') 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'] + " Set:" + moon_table['set_time'] + "\nMoon Phase:" \ - + moon_table['phase'] + " @:" + str('{0:.2f}'.format(moon_table['illumination'])) + "%" \ + 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'] return moon_data \ No newline at end of file