Skip to content

Commit

Permalink
Add missing space between sentences in error message (#9563)
Browse files Browse the repository at this point in the history
  • Loading branch information
shoyer authored Oct 2, 2024
1 parent c16fa1e commit 62459b1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion xarray/backends/zarr.py
Original file line number Diff line number Diff line change
Expand Up @@ -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`."
)
Expand Down

0 comments on commit 62459b1

Please sign in to comment.