From 6a6dc090bdeacedbf4e080cf410681b328524b73 Mon Sep 17 00:00:00 2001 From: Ashley Childress Date: Fri, 28 Aug 2026 22:33:38 -0400 Subject: [PATCH] chore: remove dead combine_historical_faa module - module called an undefined master_txt_to_releasable_csv and could never run - nothing in the repo imported or referenced it Generated-by: Claude Opus 5 --- src/combine_historical_faa.py | 14 -------------- 1 file changed, 14 deletions(-) delete mode 100644 src/combine_historical_faa.py diff --git a/src/combine_historical_faa.py b/src/combine_historical_faa.py deleted file mode 100644 index c66fec3..0000000 --- a/src/combine_historical_faa.py +++ /dev/null @@ -1,14 +0,0 @@ -#unique_regulatory_id -# 1. read historoical and output -# 2. read sequentially - -# Instead of reading all csvs I can read just the latest release csv to get everything. - -from pathlib import Path - -base = Path("data/faa_releasable_historical") -for day_dir in sorted(base.glob("2024-02-*")): - master = day_dir / "Master.txt" - if master.exists(): - out_csv = master_txt_to_releasable_csv(master, out_dir="data/faa_releasable_historical_csv") - print(day_dir.name, "->", out_csv) \ No newline at end of file