I can spell, don't check

This commit is contained in:
AllfatherHatt 2025-03-16 13:33:02 +01:00
parent 62972399a6
commit ac14895381

View File

@ -20,7 +20,7 @@ def get_weather_forecast(location: str, days: int = 14, dt: str = '2025-03-24')
weather = Weather(location=location) weather = Weather(location=location)
response = weather.forecast(days=days, dt=dt) 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) return json.dumps(response)