Revert "update for historical run"

This reverts commit ccf55b2308.
This commit is contained in:
ggman12
2026-02-14 18:44:21 -05:00
parent 9441761ac9
commit 8ce04f1f83
2 changed files with 6 additions and 40 deletions
+5 -7
View File
@@ -182,15 +182,13 @@ def main():
all_icaos = process_date_range(start_date, end_date)
if not all_icaos:
print("No ICAOs found in date range")
sys.exit(1)
# Write combined manifest with range identifier
manifest_id = f"{args.start_date}_{args.end_date}"
if not all_icaos:
print("WARNING: No ICAOs found in date range (no releases available)")
# Write empty manifest so downstream steps can detect and skip
write_manifest([], manifest_id)
else:
write_manifest(list(all_icaos), manifest_id)
write_manifest(list(all_icaos), manifest_id)
print(f"\nDone! Total ICAOs: {len(all_icaos)}")