From 2828c3dd9487ba3f0de32a7dbe57d15701f08ad0 Mon Sep 17 00:00:00 2001 From: Aki Date: Sun, 2 Oct 2022 23:59:00 +0200 Subject: Added missing key to request body --- windy/point_forecast.py | 1 + 1 file changed, 1 insertion(+) diff --git a/windy/point_forecast.py b/windy/point_forecast.py index 2ebb67f..750ec00 100644 --- a/windy/point_forecast.py +++ b/windy/point_forecast.py @@ -50,6 +50,7 @@ class Request: def json(self): body = { + 'key': self.key, 'lat': self.lat, 'lon': self.lon, 'model': str(self.model), -- cgit v1.1