From 6cc60aa2a87bebb8fe0b75d081a860da3e8f4687 Mon Sep 17 00:00:00 2001 From: danielpdwalker Date: Thu, 21 Oct 2021 12:23:09 +0100 Subject: [PATCH] Made all settings required --- tap_openweathermap/tap.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tap_openweathermap/tap.py b/tap_openweathermap/tap.py index bbb11a2..75190f6 100644 --- a/tap_openweathermap/tap.py +++ b/tap_openweathermap/tap.py @@ -35,11 +35,13 @@ class TapOpenWeatherMap(Tap): th.Property( "forecast_weather_longitude", th.StringType, + required=True, description="Longitude of city to get forecast for" ), th.Property( "forecast_weather_lattitude", th.StringType, + required=True, description="Lattitude of city to get forecast for" ), ).to_dict()