File tree Expand file tree Collapse file tree 4 files changed +5
-5
lines changed Expand file tree Collapse file tree 4 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -1015,7 +1015,7 @@ async def create(
10151015 storage_options : dict
10161016 If using an fsspec URL to create the store, these will be passed to
10171017 the backend implementation. Ignored otherwise.
1018- config : ArrayConfig | ArrayConfigLike, optional
1018+ config : ArrayConfigLike, optional
10191019 Runtime configuration of the array. If provided, will override the
10201020 default values from `zarr.config.array`.
10211021
Original file line number Diff line number Diff line change @@ -747,7 +747,7 @@ def create(
747747 storage_options : dict
748748 If using an fsspec URL to create the store, these will be passed to
749749 the backend implementation. Ignored otherwise.
750- config : ArrayConfig | ArrayConfigLike, optional
750+ config : ArrayConfigLike, optional
751751 Runtime configuration of the array. If provided, will override the
752752 default values from `zarr.config.array`.
753753
Original file line number Diff line number Diff line change @@ -3961,7 +3961,7 @@ async def from_array(
39613961 dimension_names : DimensionNames = None ,
39623962 storage_options : dict [str , Any ] | None = None ,
39633963 overwrite : bool = False ,
3964- config : ArrayConfig | ArrayConfigLike | None = None ,
3964+ config : ArrayConfigLike | None = None ,
39653965) -> AsyncArray [ArrayV2Metadata ] | AsyncArray [ArrayV3Metadata ]:
39663966 """Create an array from an existing array or array-like.
39673967
Original file line number Diff line number Diff line change 7373 )
7474 from typing import Any
7575
76- from zarr .core .array_spec import ArrayConfig , ArrayConfigLike
76+ from zarr .core .array_spec import ArrayConfigLike
7777 from zarr .core .buffer import Buffer , BufferPrototype
7878 from zarr .core .chunk_key_encodings import ChunkKeyEncodingLike
7979 from zarr .core .common import MemoryOrder
@@ -2999,7 +2999,7 @@ def array(
29992999 dimension_names : DimensionNames = None ,
30003000 storage_options : dict [str , Any ] | None = None ,
30013001 overwrite : bool = False ,
3002- config : ArrayConfig | ArrayConfigLike | None = None ,
3002+ config : ArrayConfigLike | None = None ,
30033003 data : npt .ArrayLike | None = None ,
30043004 ) -> Array :
30053005 """Create an array within this group.
You can’t perform that action at this time.
0 commit comments