From 3173a7c83b6f279e04455fcff7b195e781a0010e Mon Sep 17 00:00:00 2001 From: Barbara Bertozzi Date: Fri, 22 Aug 2025 16:42:02 +0200 Subject: [PATCH] Cleanup: remove wreck code from src/sp2xr/resample_pbp_hk.py --- src/sp2xr/resample_pbp_hk.py | 9 --------- 1 file changed, 9 deletions(-) diff --git a/src/sp2xr/resample_pbp_hk.py b/src/sp2xr/resample_pbp_hk.py index 8588255..fd53d3c 100644 --- a/src/sp2xr/resample_pbp_hk.py +++ b/src/sp2xr/resample_pbp_hk.py @@ -177,13 +177,4 @@ def aggregate_dt(ddf_pbp_dt, ddf_hk_dt, run_config): # Optionally drop the old columns ddf_pbp_hk_dt = ddf_pbp_hk_dt.drop(columns=["date_x", "hour_x", "date_y", "hour_y"]) - - """ddf_pbp_hk_dt.to_parquet( - path=f"{run_config['output']}/combined_pbp_hk_{run_config['dt']}s", - partition_on=["date", "hour"], - engine="pyarrow", - write_index=True, - write_metadata_file=True, - overwrite=False, - )""" return ddf_pbp_hk_dt