@@ -185,8 +185,6 @@ class AsyncArray(Generic[T_ArrayMetadata]):
185185 The metadata of the array.
186186 store_path : StorePath
187187 The path to the Zarr store.
188- codec_pipeline : CodecPipeline, optional
189- The codec pipeline used for encoding and decoding chunks, by default None.
190188 order : {'C', 'F'}, optional
191189 The order of the array data in memory, by default None.
192190
@@ -858,9 +856,9 @@ def _iter_chunk_coords(
858856
859857 Parameters
860858 ----------
861- origin: Sequence[int] | None, default=None
859+ origin : Sequence[int] | None, default=None
862860 The origin of the selection relative to the array's chunk grid.
863- selection_shape: Sequence[int] | None, default=None
861+ selection_shape : Sequence[int] | None, default=None
864862 The shape of the selection in chunk grid coordinates.
865863
866864 Yields
@@ -879,9 +877,9 @@ def _iter_chunk_keys(
879877
880878 Parameters
881879 ----------
882- origin: Sequence[int] | None, default=None
880+ origin : Sequence[int] | None, default=None
883881 The origin of the selection relative to the array's chunk grid.
884- selection_shape: Sequence[int] | None, default=None
882+ selection_shape : Sequence[int] | None, default=None
885883 The shape of the selection in chunk grid coordinates.
886884
887885 Yields
@@ -902,9 +900,9 @@ def _iter_chunk_regions(
902900
903901 Parameters
904902 ----------
905- origin: Sequence[int] | None, default=None
903+ origin : Sequence[int] | None, default=None
906904 The origin of the selection relative to the array's chunk grid.
907- selection_shape: Sequence[int] | None, default=None
905+ selection_shape : Sequence[int] | None, default=None
908906 The shape of the selection in chunk grid coordinates.
909907
910908 Yields
@@ -1152,17 +1150,7 @@ async def info(self) -> None:
11521150
11531151@dataclass (frozen = True )
11541152class Array :
1155- """Instantiate an array from an initialized store.
1156-
1157- Parameters
1158- ----------
1159- store : StoreLike
1160- The array store that has already been initialized.
1161- shape : ChunkCoords
1162- The shape of the array.
1163- dtype : npt.DTypeLike
1164- The dtype of the array.
1165- """
1153+ """Instantiate an array from an initialized store."""
11661154
11671155 _async_array : AsyncArray [ArrayV3Metadata ] | AsyncArray [ArrayV2Metadata ]
11681156
@@ -1420,9 +1408,9 @@ def _iter_chunk_coords(
14201408
14211409 Parameters
14221410 ----------
1423- origin: Sequence[int] | None, default=None
1411+ origin : Sequence[int] | None, default=None
14241412 The origin of the selection relative to the array's chunk grid.
1425- selection_shape: Sequence[int] | None, default=None
1413+ selection_shape : Sequence[int] | None, default=None
14261414 The shape of the selection in chunk grid coordinates.
14271415
14281416 Yields
@@ -1457,9 +1445,9 @@ def _iter_chunk_keys(
14571445
14581446 Parameters
14591447 ----------
1460- origin: Sequence[int] | None, default=None
1448+ origin : Sequence[int] | None, default=None
14611449 The origin of the selection relative to the array's chunk grid.
1462- selection_shape: Sequence[int] | None, default=None
1450+ selection_shape : Sequence[int] | None, default=None
14631451 The shape of the selection in chunk grid coordinates.
14641452
14651453 Yields
@@ -1479,9 +1467,9 @@ def _iter_chunk_regions(
14791467
14801468 Parameters
14811469 ----------
1482- origin: Sequence[int] | None, default=None
1470+ origin : Sequence[int] | None, default=None
14831471 The origin of the selection relative to the array's chunk grid.
1484- selection_shape: Sequence[int] | None, default=None
1472+ selection_shape : Sequence[int] | None, default=None
14851473 The shape of the selection in chunk grid coordinates.
14861474
14871475 Yields
@@ -2232,7 +2220,7 @@ def get_mask_selection(
22322220
22332221 Parameters
22342222 ----------
2235- selection : ndarray, bool
2223+ mask : ndarray, bool
22362224 A Boolean array of the same shape as the array against which the selection is
22372225 being made.
22382226 out : NDBuffer, optional
@@ -2315,7 +2303,7 @@ def set_mask_selection(
23152303
23162304 Parameters
23172305 ----------
2318- selection : ndarray, bool
2306+ mask : ndarray, bool
23192307 A Boolean array of the same shape as the array against which the selection is
23202308 being made.
23212309 value : npt.ArrayLike
0 commit comments