Skip to content

Commit

Permalink
fix: nit
Browse files Browse the repository at this point in the history
  • Loading branch information
MDavidson17 committed Dec 8, 2023
1 parent 2c4c7cf commit bbe29a5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/collection_from_items.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,12 +46,12 @@ def main() -> None:
parser.add_argument(
"--start-date",
dest="start_date",
help="Start datetime in format YYYY-MM-DD (Inclusive)",
help="Start date in format YYYY-MM-DD (Inclusive)",
type=valid_date,
required=True,
)
parser.add_argument(
"--end-date", dest="end_date", help="End datetime in format YYYY-MM-DD (Inclusive)", type=valid_date, required=True
"--end-date", dest="end_date", help="End date in format YYYY-MM-DD (Inclusive)", type=valid_date, required=True
)
parser.add_argument("--event", dest="dest", help="Event name if applicable", type=str, required=False)
parser.add_argument(
Expand Down

0 comments on commit bbe29a5

Please sign in to comment.