From 56fe3a1be00e3fdc4d435bf9acf038d056818c2f Mon Sep 17 00:00:00 2001 From: Jun-te Kim Date: Mon, 30 Mar 2026 17:22:54 +0000 Subject: [PATCH] get rid of parser as it doesn't work --- backend/scripts/combine_address2uprn_outputs.py | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/backend/scripts/combine_address2uprn_outputs.py b/backend/scripts/combine_address2uprn_outputs.py index f065c676..105b8639 100644 --- a/backend/scripts/combine_address2uprn_outputs.py +++ b/backend/scripts/combine_address2uprn_outputs.py @@ -53,13 +53,3 @@ def main(task_id, output): print(f"Combined CSV saved to {output}") print(f"Total rows: {len(combined)}") - - -# if __name__ == "__main__": -# parser = argparse.ArgumentParser() -# parser.add_argument("task_id", help="Task ID folder in S3") -# parser.add_argument("--output", default="combined.csv") - -# args = parser.parse_args() - -# main(args.task_id, args.output)