Skip to content

Commit

Permalink
Dev javi/fix no required argument (#9)
Browse files Browse the repository at this point in the history
* Remove no required argument.

* Change to lowercase letter
  • Loading branch information
jke94 authored Feb 9, 2025
1 parent 0ba4b68 commit 2e1869f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/weather-station/morning_daily_scheduler.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ def main(station_id:str, api_key:str, date:str) -> int:
)
parser.add_argument("--weather_underground_api_key",
type=str,
help="Weather Underground api Key."
help="Weather Underground api key."
)

args = parser.parse_args()
Expand Down
3 changes: 1 addition & 2 deletions src/weather-station/post_morning_daily_tweet_in_x.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,8 +88,7 @@ def main(
)
parser.add_argument("--weather_underground_api_key",
type=str,
help="Weather Underground api Key.",
required=True
help="Weather Underground api key."
)

# X (Twitter) arguments.
Expand Down

0 comments on commit 2e1869f

Please sign in to comment.