From a9f7ff39e8c0c65fc65086025b815e74363ab08e Mon Sep 17 00:00:00 2001 From: Brendan Howell Date: Fri, 15 Oct 2021 01:10:52 +0200 Subject: [PATCH] weather api updates --- screenless/bureau/publications/weather.py | 1 - 1 file changed, 1 deletion(-) diff --git a/screenless/bureau/publications/weather.py b/screenless/bureau/publications/weather.py index d3ff77d..21095d0 100644 --- a/screenless/bureau/publications/weather.py +++ b/screenless/bureau/publications/weather.py @@ -19,7 +19,6 @@ def get_weather_json(lat, lon): # https://api.met.no/weatherapi/locationforecast/2.0/classic?lat=52.50639&lon=13.4063 resp = requests.get(url=url, params=params, headers=headers) - pprint(resp) return resp.json() def get_forecast(lat, lon):