From 62459b18b44cd8b80bafb0d4573ef595ce7ea44e Mon Sep 17 00:00:00 2001 From: Stephan Hoyer Date: Wed, 2 Oct 2024 09:39:44 -0500 Subject: [PATCH] Add missing space between sentences in error message (#9563) --- xarray/backends/zarr.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xarray/backends/zarr.py b/xarray/backends/zarr.py index c048ea63419..e8b47032e84 100644 --- a/xarray/backends/zarr.py +++ b/xarray/backends/zarr.py @@ -201,7 +201,7 @@ def _determine_zarr_chunks( f"Specified zarr chunks encoding['chunks']={enc_chunks_tuple!r} for " f"variable named {name!r} would overlap multiple dask chunks {var_chunks!r} " f"on the region {region}. " - f"Writing this array in parallel with dask could lead to corrupted data." + f"Writing this array in parallel with dask could lead to corrupted data. " f"Consider either rechunking using `chunk()`, deleting " f"or modifying `encoding['chunks']`, or specify `safe_chunks=False`." )