@@ -160,7 +160,7 @@ async def load(
160160
161161 Parameters
162162 ----------
163- store : Store or string
163+ store : Store or str
164164 Store or path to directory in file system or name of zip file.
165165 path : str or None, optional
166166 The path within the store from which to load.
@@ -204,7 +204,7 @@ async def open(
204204
205205 Parameters
206206 ----------
207- store : Store or string , optional
207+ store : Store or str , optional
208208 Store or path to directory in file system or name of zip file.
209209 mode : {'r', 'r+', 'a', 'w', 'w-'}, optional
210210 Persistence mode: 'r' means read only (must exist); 'r+' means
@@ -271,7 +271,7 @@ async def save(
271271
272272 Parameters
273273 ----------
274- store : Store or string
274+ store : Store or str
275275 Store or path to directory in file system or name of zip file.
276276 args : ndarray
277277 NumPy arrays with data to save.
@@ -307,7 +307,7 @@ async def save_array(
307307
308308 Parameters
309309 ----------
310- store : Store or string
310+ store : Store or str
311311 Store or path to directory in file system or name of zip file.
312312 arr : ndarray
313313 NumPy array with data to save.
@@ -355,7 +355,7 @@ async def save_group(
355355
356356 Parameters
357357 ----------
358- store : Store or string
358+ store : Store or str
359359 Store or path to directory in file system or name of zip file.
360360 args : ndarray
361361 NumPy arrays with data to save.
@@ -471,7 +471,7 @@ async def group(
471471
472472 Parameters
473473 ----------
474- store : Store or string , optional
474+ store : Store or str , optional
475475 Store or path to directory in file system.
476476 overwrite : bool, optional
477477 If True, delete any pre-existing data in `store` at `path` before
@@ -485,7 +485,7 @@ async def group(
485485 to all attribute read operations.
486486 synchronizer : object, optional
487487 Array synchronizer.
488- path : string , optional
488+ path : str , optional
489489 Group path within store.
490490 meta_array : array-like, optional
491491 An array instance to use for determining arrays to create and return
@@ -551,7 +551,7 @@ async def open_group(
551551
552552 Parameters
553553 ----------
554- store : Store, string , or mapping, optional
554+ store : Store, str , or mapping, optional
555555 Store or path to directory in file system or name of zip file.
556556
557557 Strings are interpreted as paths on the local file system
@@ -574,9 +574,9 @@ async def open_group(
574574 to all attribute read operations.
575575 synchronizer : object, optional
576576 Array synchronizer.
577- path : string , optional
577+ path : str , optional
578578 Group path within store.
579- chunk_store : Store or string , optional
579+ chunk_store : Store or str , optional
580580 Store or path to directory in file system or name of zip file.
581581 storage_options : dict
582582 If using an fsspec URL to create the store, these will be passed to
@@ -670,22 +670,22 @@ async def create(
670670 False, will be set to `shape`, i.e., single chunk for the whole array.
671671 If an int, the chunk size in each dimension will be given by the value
672672 of `chunks`. Default is True.
673- dtype : string or dtype, optional
673+ dtype : str or dtype, optional
674674 NumPy dtype.
675675 compressor : Codec, optional
676676 Primary compressor.
677677 fill_value : object
678678 Default value to use for uninitialized portions of the array.
679679 order : {'C', 'F'}, optional
680680 Memory layout to be used within each chunk.
681- store : Store or string
681+ store : Store or str
682682 Store or path to directory in file system or name of zip file.
683683 synchronizer : object, optional
684684 Array synchronizer.
685685 overwrite : bool, optional
686686 If True, delete all pre-existing data in `store` at `path` before
687687 creating the array.
688- path : string , optional
688+ path : str , optional
689689 Path under which array is stored.
690690 chunk_store : MutableMapping, optional
691691 Separate storage for chunks. If not provided, `store` will be used
@@ -943,11 +943,11 @@ async def open_array(
943943
944944 Parameters
945945 ----------
946- store : Store or string
946+ store : Store or str
947947 Store or path to directory in file system or name of zip file.
948948 zarr_format : {2, 3, None}, optional
949949 The zarr format to use when saving.
950- path : string , optional
950+ path : str , optional
951951 Path in store to array.
952952 storage_options : dict
953953 If using an fsspec URL to create the store, these will be passed to
0 commit comments