Skip to content

Commit

Permalink
Made all settings required
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielPDWalker committed Oct 21, 2021
1 parent 07e6b8a commit 6cc60aa
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions tap_openweathermap/tap.py
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down

0 comments on commit 6cc60aa

Please sign in to comment.