From 63a9d558a8549d4595247ef6047adc518795c721 Mon Sep 17 00:00:00 2001 From: Ou Ku Date: Tue, 14 Jan 2025 16:25:42 +0100 Subject: [PATCH] remove the redundant mode setup for append writing to zarr --- examples/scripts/script_reslc.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/scripts/script_reslc.py b/examples/scripts/script_reslc.py index 8764359..39d9f06 100644 --- a/examples/scripts/script_reslc.py +++ b/examples/scripts/script_reslc.py @@ -187,7 +187,7 @@ def get_free_port(): else: # Append in time dimension if the zarr already exists # Otherwise, a new zarr will be created - slcs_output.to_zarr(path_output_slcs, mode="a", append_dim="time") + slcs_output.to_zarr(path_output_slcs, append_dim="time") # Close the client when finishing client.close()