Skip to content

Commit 1fc79b8

Browse files
committed
restore import cycle breaker
1 parent e839c10 commit 1fc79b8

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/zarr/core/array.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,6 @@
6666
product,
6767
)
6868
from zarr.core.config import config as zarr_config
69-
from zarr.core.group import AsyncGroup
7069
from zarr.core.indexing import (
7170
BasicIndexer,
7271
BasicSelection,
@@ -125,6 +124,7 @@
125124

126125
from zarr.abc.codec import CodecPipeline
127126
from zarr.codecs.sharding import ShardingCodecIndexLocation
127+
from zarr.core.group import AsyncGroup
128128
from zarr.storage import StoreLike
129129

130130

@@ -3739,6 +3739,8 @@ async def chunks_initialized(
37393739
def _build_parents(
37403740
node: AsyncArray[ArrayV2Metadata] | AsyncArray[ArrayV3Metadata] | AsyncGroup,
37413741
) -> list[AsyncGroup]:
3742+
from zarr.core.group import AsyncGroup
3743+
37423744
store = node.store_path.store
37433745
path = node.store_path.path
37443746
if not path:

0 commit comments

Comments
 (0)