From 02782a6ce3b241c4d024c06aad6d6eb8dc6df597 Mon Sep 17 00:00:00 2001 From: Marius Alwan Meyer Date: Fri, 29 Sep 2023 13:43:43 +0200 Subject: [PATCH] Removed unnescessary style elements --- openweather.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/openweather.py b/openweather.py index 1dfdf31..52ca9f9 100755 --- a/openweather.py +++ b/openweather.py @@ -27,16 +27,16 @@ match response.status_code: print(Columns([ Panel(f"[blue]{round(current_temperature - 273.15, 2)}°C", - title="[bold]Temperature[/bold]"), + title="[bold]Temperature"), Panel(f"[blue]{current_pressure}hPa", - title="[bold]Atmospheric Pressure[/bold]"), + title="[bold]Atmospheric Pressure"), Panel(f"[blue]{current_humidity}%", - title="[bold]Humidity[/bold]"), + title="[bold]Humidity"), Panel(f"[blue]{weather_description}", - title="[bold]Description[/bold]"), + title="[bold]Description"), ])) case _: