From 01024c4695c77e3a44eefc3828e10f251be5815a Mon Sep 17 00:00:00 2001 From: ggman12 Date: Sun, 1 Feb 2026 20:40:37 -0500 Subject: [PATCH] fix args --- src/get_historical_faa.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/get_historical_faa.py b/src/get_historical_faa.py index 573942c..1fc3b3f 100644 --- a/src/get_historical_faa.py +++ b/src/get_historical_faa.py @@ -106,7 +106,7 @@ for date, sha in date_to_sha.items(): print(f"{date} {sha[:7]} -> {day_dir} (master parts: {len(parts)})") # 4) Convert ZIP -> CSV out_csv = day_dir / f"ReleasableAircraft_{date}.csv" - df_new = convert_faa_master_txt_to_df(zip_path, out_csv, date) + df_new = convert_faa_master_txt_to_df(zip_path, date) if df_base.empty: df_base = df_new print(len(df_base), "total entries so far")