Skip to content

Commit

Permalink
Fix circular import
Browse files Browse the repository at this point in the history
  • Loading branch information
dstansby committed Jan 4, 2025
1 parent a9d2c9e commit 52d51bc
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 1 addition & 1 deletion src/zarr/codecs/sharding.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@
BufferPrototype,
NDBuffer,
default_buffer_prototype,
numpy_buffer_prototype,
)
from zarr.core.buffer.cpu import numpy_buffer_prototype
from zarr.core.chunk_grids import ChunkGrid, RegularChunkGrid
from zarr.core.common import (
ChunkCoords,
Expand Down
2 changes: 0 additions & 2 deletions src/zarr/core/buffer/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
NDBuffer,
default_buffer_prototype,
)
from zarr.core.buffer.cpu import numpy_buffer_prototype

__all__ = [
"ArrayLike",
Expand All @@ -15,5 +14,4 @@
"NDArrayLike",
"NDBuffer",
"default_buffer_prototype",
"numpy_buffer_prototype",
]

0 comments on commit 52d51bc

Please sign in to comment.