Skip to content

Commit 6dc1f59

Browse files
author
Lily Wang
committed
fixed pep8 issues
1 parent 24c1b45 commit 6dc1f59

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

xarray/backends/zarr.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -136,10 +136,10 @@ def _determine_zarr_chunks(enc_chunks, var_chunks, ndim):
136136
% (enc_chunks_tuple, var_chunks))
137137
if dchunks[-1] > zchunk:
138138
raise ValueError(
139-
"Final chunk of Zarr array must be the same size or smaller "
140-
"than the first. The specified Zarr chunk encoding is %r, "
141-
"but %r in variable Dask chunks %r is incompatible. "
142-
"Consider rechunking using `chunk()`."
139+
"Final chunk of Zarr array must be the same size or "
140+
"smaller than the first. The specified Zarr chunk "
141+
"encoding is %r, but %r in variable Dask chunks %r is "
142+
"incompatible. Consider rechunking using `chunk()`."
143143
% (enc_chunks_tuple, dchunks, var_chunks))
144144
return enc_chunks_tuple
145145

0 commit comments

Comments
 (0)