diff options
author | Aki <please@ignore.pl> | 2022-10-02 23:59:00 +0200 |
---|---|---|
committer | Aki <please@ignore.pl> | 2022-10-02 23:59:00 +0200 |
commit | 2828c3dd9487ba3f0de32a7dbe57d15701f08ad0 (patch) | |
tree | 494b089b89122061933f9e2b58978d4ccc6e5c7a | |
parent | 1480fc9a3d13340cf40319ab1d630aa44423404d (diff) | |
download | windy-2828c3dd9487ba3f0de32a7dbe57d15701f08ad0.zip windy-2828c3dd9487ba3f0de32a7dbe57d15701f08ad0.tar.gz windy-2828c3dd9487ba3f0de32a7dbe57d15701f08ad0.tar.bz2 |
Added missing key to request body
-rw-r--r-- | windy/point_forecast.py | 1 |
1 files changed, 1 insertions, 0 deletions
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), |