feat: Reduced the amount of steps and saved a lot of ram

This commit is contained in:
2025-12-09 16:29:48 +00:00
parent 84ba6c837c
commit 59f459d4d0
5 changed files with 2 additions and 99 deletions
-6
View File
@@ -14,7 +14,6 @@ logging.basicConfig(
if __name__ == "__main__":
os.makedirs(Path(Config.ASC_TOP_FOLDER), exist_ok=True)
#os.makedirs(Path(Config.CSV_TOP_FOLDER), exist_ok=True)
os.makedirs(Path(Config.COMBINED_FOLDER), exist_ok=True)
locations = []
@@ -92,11 +91,6 @@ if __name__ == "__main__":
logging.info("Writing CSV files...")
timeseries.write_results_to_csv(results, locations)
# results.clear()
# logging.info("combining CSVs into groups")
# combiner.combine_csv_files()
# logging.info("CSVs combined!")
end = time.time()
elapsed_time = end - start