Skip to content

Commit 276b997

Browse files
authored
fix: ChunkCoords definition (#3425)
* fix: `ChunkCoords` definition Broken since #3374 * changelog
1 parent 7d43f32 commit 276b997

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

changes/3425.bugfix.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Fix ChunkGrid definition (broken in 3.1.2)

src/zarr/core/common.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
BytesLike = bytes | bytearray | memoryview
3939
ShapeLike = Iterable[int] | int
4040
# For backwards compatibility
41-
ChunkCoords: tuple[int, ...]
41+
ChunkCoords = tuple[int, ...]
4242
ZarrFormat = Literal[2, 3]
4343
NodeType = Literal["array", "group"]
4444
JSON = str | int | float | Mapping[str, "JSON"] | Sequence["JSON"] | None

0 commit comments

Comments
 (0)