put current weather and forecast on separate lines

the long location string means this is often bleeding into two lines at
the very end anyway, so this just looks nicer
This commit is contained in:
Brian S. Stephan 2021-04-26 11:52:43 -05:00
parent 40286eeafc
commit b971b72af8
1 changed files with 1 additions and 1 deletions

View File

@ -44,7 +44,7 @@ class Weather(Plugin):
f"Precipitation {weather['current']['precipitation']}. "
f"Pressure {weather['current']['pressure']}. "
f"Cloud cover {weather['current']['cloud_cover']}. "
f"UV index {weather['current']['uv_index']}. "
f"UV index {weather['current']['uv_index']}.\n"
f"Today: {weather['today_forecast']['noteworthy']}, "
f"High {weather['today_forecast']['high_F']}/{weather['today_forecast']['high_C']}, "
f"Low {weather['today_forecast']['low_F']}/{weather['today_forecast']['low_C']}. "