We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2e8e8cb commit fc24c87Copy full SHA for fc24c87
1 file changed
src/zarr/core/chunk_grids.py
@@ -714,7 +714,7 @@ def normalize_chunks_1d(
714
non_int_idxs, non_int_vals = [*zip(*non_int, strict=False)]
715
raise TypeError(
716
f"Each chunk size must be an integer; got non-integer element(s) {non_int_vals!r} "
717
- f"at indices {non_int_idxs!r}. Chunk sizes must be declareds as a flat sequence of"
+ f"at indices {non_int_idxs!r}. Chunk sizes must be declared as a flat sequence of "
718
f"positive integers (e.g. [3, 3, 1])."
719
)
720
ints: list[int] = [int(c) for c in chunk_list] # type: ignore[call-overload]
0 commit comments