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.
ChunkCoords
1 parent 7d43f32 commit 276b997Copy full SHA for 276b997
changes/3425.bugfix.rst
@@ -0,0 +1 @@
1
+Fix ChunkGrid definition (broken in 3.1.2)
src/zarr/core/common.py
@@ -38,7 +38,7 @@
38
BytesLike = bytes | bytearray | memoryview
39
ShapeLike = Iterable[int] | int
40
# For backwards compatibility
41
-ChunkCoords: tuple[int, ...]
+ChunkCoords = tuple[int, ...]
42
ZarrFormat = Literal[2, 3]
43
NodeType = Literal["array", "group"]
44
JSON = str | int | float | Mapping[str, "JSON"] | Sequence["JSON"] | None
0 commit comments