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