Skip to content

Commit fc24c87

Browse files
committed
fix: typos
1 parent 2e8e8cb commit fc24c87

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/zarr/core/chunk_grids.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -714,7 +714,7 @@ def normalize_chunks_1d(
714714
non_int_idxs, non_int_vals = [*zip(*non_int, strict=False)]
715715
raise TypeError(
716716
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"
717+
f"at indices {non_int_idxs!r}. Chunk sizes must be declared as a flat sequence of "
718718
f"positive integers (e.g. [3, 3, 1])."
719719
)
720720
ints: list[int] = [int(c) for c in chunk_list] # type: ignore[call-overload]

0 commit comments

Comments
 (0)