@@ -184,8 +184,6 @@ class AsyncArray(Generic[T_ArrayMetadata]):
184184 The metadata of the array.
185185 store_path : StorePath
186186 The path to the Zarr store.
187- codec_pipeline : CodecPipeline, optional
188- The codec pipeline used for encoding and decoding chunks, by default None.
189187 order : {'C', 'F'}, optional
190188 The order of the array data in memory, by default None.
191189
@@ -857,9 +855,9 @@ def _iter_chunk_coords(
857855
858856 Parameters
859857 ----------
860- origin: Sequence[int] | None, default=None
858+ origin : Sequence[int] | None, default=None
861859 The origin of the selection relative to the array's chunk grid.
862- selection_shape: Sequence[int] | None, default=None
860+ selection_shape : Sequence[int] | None, default=None
863861 The shape of the selection in chunk grid coordinates.
864862
865863 Yields
@@ -878,9 +876,9 @@ def _iter_chunk_keys(
878876
879877 Parameters
880878 ----------
881- origin: Sequence[int] | None, default=None
879+ origin : Sequence[int] | None, default=None
882880 The origin of the selection relative to the array's chunk grid.
883- selection_shape: Sequence[int] | None, default=None
881+ selection_shape : Sequence[int] | None, default=None
884882 The shape of the selection in chunk grid coordinates.
885883
886884 Yields
@@ -901,9 +899,9 @@ def _iter_chunk_regions(
901899
902900 Parameters
903901 ----------
904- origin: Sequence[int] | None, default=None
902+ origin : Sequence[int] | None, default=None
905903 The origin of the selection relative to the array's chunk grid.
906- selection_shape: Sequence[int] | None, default=None
904+ selection_shape : Sequence[int] | None, default=None
907905 The shape of the selection in chunk grid coordinates.
908906
909907 Yields
@@ -1151,17 +1149,7 @@ async def info(self) -> None:
11511149
11521150@dataclass (frozen = True )
11531151class Array :
1154- """Instantiate an array from an initialized store.
1155-
1156- Parameters
1157- ----------
1158- store : StoreLike
1159- The array store that has already been initialized.
1160- shape : ChunkCoords
1161- The shape of the array.
1162- dtype : npt.DTypeLike
1163- The dtype of the array.
1164- """
1152+ """Instantiate an array from an initialized store."""
11651153
11661154 _async_array : AsyncArray [ArrayV3Metadata ] | AsyncArray [ArrayV2Metadata ]
11671155
@@ -1419,9 +1407,9 @@ def _iter_chunk_coords(
14191407
14201408 Parameters
14211409 ----------
1422- origin: Sequence[int] | None, default=None
1410+ origin : Sequence[int] | None, default=None
14231411 The origin of the selection relative to the array's chunk grid.
1424- selection_shape: Sequence[int] | None, default=None
1412+ selection_shape : Sequence[int] | None, default=None
14251413 The shape of the selection in chunk grid coordinates.
14261414
14271415 Yields
@@ -1456,9 +1444,9 @@ def _iter_chunk_keys(
14561444
14571445 Parameters
14581446 ----------
1459- origin: Sequence[int] | None, default=None
1447+ origin : Sequence[int] | None, default=None
14601448 The origin of the selection relative to the array's chunk grid.
1461- selection_shape: Sequence[int] | None, default=None
1449+ selection_shape : Sequence[int] | None, default=None
14621450 The shape of the selection in chunk grid coordinates.
14631451
14641452 Yields
@@ -1478,9 +1466,9 @@ def _iter_chunk_regions(
14781466
14791467 Parameters
14801468 ----------
1481- origin: Sequence[int] | None, default=None
1469+ origin : Sequence[int] | None, default=None
14821470 The origin of the selection relative to the array's chunk grid.
1483- selection_shape: Sequence[int] | None, default=None
1471+ selection_shape : Sequence[int] | None, default=None
14841472 The shape of the selection in chunk grid coordinates.
14851473
14861474 Yields
@@ -2231,7 +2219,7 @@ def get_mask_selection(
22312219
22322220 Parameters
22332221 ----------
2234- selection : ndarray, bool
2222+ mask : ndarray, bool
22352223 A Boolean array of the same shape as the array against which the selection is
22362224 being made.
22372225 out : NDBuffer, optional
@@ -2314,7 +2302,7 @@ def set_mask_selection(
23142302
23152303 Parameters
23162304 ----------
2317- selection : ndarray, bool
2305+ mask : ndarray, bool
23182306 A Boolean array of the same shape as the array against which the selection is
23192307 being made.
23202308 value : npt.ArrayLike
0 commit comments