From ac1489538147a82fe0b4a7d3d8dedccf145729d6 Mon Sep 17 00:00:00 2001 From: AllfatherHatt Date: Sun, 16 Mar 2025 13:33:02 +0100 Subject: [PATCH] I can spell, don't check --- reginaldCog/weather.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reginaldCog/weather.py b/reginaldCog/weather.py index c31dc73..d0ded52 100644 --- a/reginaldCog/weather.py +++ b/reginaldCog/weather.py @@ -20,7 +20,7 @@ def get_weather_forecast(location: str, days: int = 14, dt: str = '2025-03-24') weather = Weather(location=location) response = weather.forecast(days=days, dt=dt) - print("DEBUG: Forecast API Response: ", json.dumps(response, ident=2)) + print("DEBUG: Forecast API Response: ", json.dumps(response, indent=2)) return json.dumps(response)