From 5c7cdf12b1d90451e8751693508e2ee7fa29a65c Mon Sep 17 00:00:00 2001 From: ggman12 Date: Sun, 1 Feb 2026 19:08:31 -0500 Subject: [PATCH] fix: change command line arguments from optional to positional for date inputs --- src/get_historical_faa.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/get_historical_faa.py b/src/get_historical_faa.py index a7388bd..d04c731 100644 --- a/src/get_historical_faa.py +++ b/src/get_historical_faa.py @@ -17,8 +17,8 @@ import argparse # Parse command line arguments parser = argparse.ArgumentParser(description="Process historical FAA data from git commits") -parser.add_argument("--since", required=True, help="Start date (YYYY-MM-DD)") -parser.add_argument("--until", required=True, help="End date (YYYY-MM-DD)") +parser.add_argument("since", help="Start date (YYYY-MM-DD)") +parser.add_argument("until", help="End date (YYYY-MM-DD)") args = parser.parse_args() # Clone repository if it doesn't exist