Skip to content

Commit

Permalink
fix: make --timezone a required arg so we never forget it again (#244)
Browse files Browse the repository at this point in the history
  • Loading branch information
hairmare authored Mar 3, 2023
1 parent 7aaca4d commit ba78da1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ usage: suisa_sendemeldung.py [-h] --bearer-token BEARER_TOKEN --project-id PROJE
[--email_login EMAIL_LOGIN] [--email_pass EMAIL_PASS] [--email_subject EMAIL_SUBJECT]
[--email_text EMAIL_TEXT] [--email-footer EMAIL_FOOTER] --responsible-email
RESPONSIBLE_EMAIL [--start_date START_DATE] [--end_date END_DATE] [--last_month]
[--timezone TIMEZONE] [--locale LOCALE] [--filename FILENAME] [--stdout]
--timezone TIMEZONE [--locale LOCALE] [--filename FILENAME] [--stdout]
ACRCloud client for SUISA reporting @ RaBe.
Expand Down
1 change: 1 addition & 0 deletions suisa_sendemeldung/suisa_sendemeldung.py
Original file line number Diff line number Diff line change
Expand Up @@ -247,6 +247,7 @@ def get_arguments(parser: ArgumentParser): # pragma: no cover
"--timezone",
env_var="TIMEZONE",
help="set the timezone for localization",
required=True,
default="UTC",
)
parser.add_argument(
Expand Down

0 comments on commit ba78da1

Please sign in to comment.