We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e839c10 commit 1fc79b8Copy full SHA for 1fc79b8
src/zarr/core/array.py
@@ -66,7 +66,6 @@
66
product,
67
)
68
from zarr.core.config import config as zarr_config
69
-from zarr.core.group import AsyncGroup
70
from zarr.core.indexing import (
71
BasicIndexer,
72
BasicSelection,
@@ -125,6 +124,7 @@
125
124
126
from zarr.abc.codec import CodecPipeline
127
from zarr.codecs.sharding import ShardingCodecIndexLocation
+ from zarr.core.group import AsyncGroup
128
from zarr.storage import StoreLike
129
130
@@ -3739,6 +3739,8 @@ async def chunks_initialized(
3739
def _build_parents(
3740
node: AsyncArray[ArrayV2Metadata] | AsyncArray[ArrayV3Metadata] | AsyncGroup,
3741
) -> list[AsyncGroup]:
3742
3743
+
3744
store = node.store_path.store
3745
path = node.store_path.path
3746
if not path:
0 commit comments