@@ -159,7 +159,7 @@ async def load(
159159
160160 Parameters
161161 ----------
162- store : Store or string
162+ store : Store or str
163163 Store or path to directory in file system or name of zip file.
164164 path : str or None, optional
165165 The path within the store from which to load.
@@ -203,7 +203,7 @@ async def open(
203203
204204 Parameters
205205 ----------
206- store : Store or string , optional
206+ store : Store or str , optional
207207 Store or path to directory in file system or name of zip file.
208208 mode : {'r', 'r+', 'a', 'w', 'w-'}, optional
209209 Persistence mode: 'r' means read only (must exist); 'r+' means
@@ -267,7 +267,7 @@ async def save(
267267
268268 Parameters
269269 ----------
270- store : Store or string
270+ store : Store or str
271271 Store or path to directory in file system or name of zip file.
272272 args : ndarray
273273 NumPy arrays with data to save.
@@ -303,7 +303,7 @@ async def save_array(
303303
304304 Parameters
305305 ----------
306- store : Store or string
306+ store : Store or str
307307 Store or path to directory in file system or name of zip file.
308308 arr : ndarray
309309 NumPy array with data to save.
@@ -351,7 +351,7 @@ async def save_group(
351351
352352 Parameters
353353 ----------
354- store : Store or string
354+ store : Store or str
355355 Store or path to directory in file system or name of zip file.
356356 args : ndarray
357357 NumPy arrays with data to save.
@@ -467,7 +467,7 @@ async def group(
467467
468468 Parameters
469469 ----------
470- store : Store or string , optional
470+ store : Store or str , optional
471471 Store or path to directory in file system.
472472 overwrite : bool, optional
473473 If True, delete any pre-existing data in `store` at `path` before
@@ -481,7 +481,7 @@ async def group(
481481 to all attribute read operations.
482482 synchronizer : object, optional
483483 Array synchronizer.
484- path : string , optional
484+ path : str , optional
485485 Group path within store.
486486 meta_array : array-like, optional
487487 An array instance to use for determining arrays to create and return
@@ -547,7 +547,7 @@ async def open_group(
547547
548548 Parameters
549549 ----------
550- store : Store, string , or mapping, optional
550+ store : Store, str , or mapping, optional
551551 Store or path to directory in file system or name of zip file.
552552
553553 Strings are interpreted as paths on the local file system
@@ -570,9 +570,9 @@ async def open_group(
570570 to all attribute read operations.
571571 synchronizer : object, optional
572572 Array synchronizer.
573- path : string , optional
573+ path : str , optional
574574 Group path within store.
575- chunk_store : Store or string , optional
575+ chunk_store : Store or str , optional
576576 Store or path to directory in file system or name of zip file.
577577 storage_options : dict
578578 If using an fsspec URL to create the store, these will be passed to
@@ -664,22 +664,22 @@ async def create(
664664 False, will be set to `shape`, i.e., single chunk for the whole array.
665665 If an int, the chunk size in each dimension will be given by the value
666666 of `chunks`. Default is True.
667- dtype : string or dtype, optional
667+ dtype : str or dtype, optional
668668 NumPy dtype.
669669 compressor : Codec, optional
670670 Primary compressor.
671671 fill_value : object
672672 Default value to use for uninitialized portions of the array.
673673 order : {'C', 'F'}, optional
674674 Memory layout to be used within each chunk.
675- store : Store or string
675+ store : Store or str
676676 Store or path to directory in file system or name of zip file.
677677 synchronizer : object, optional
678678 Array synchronizer.
679679 overwrite : bool, optional
680680 If True, delete all pre-existing data in `store` at `path` before
681681 creating the array.
682- path : string , optional
682+ path : str , optional
683683 Path under which array is stored.
684684 chunk_store : MutableMapping, optional
685685 Separate storage for chunks. If not provided, `store` will be used
@@ -937,11 +937,11 @@ async def open_array(
937937
938938 Parameters
939939 ----------
940- store : Store or string
940+ store : Store or str
941941 Store or path to directory in file system or name of zip file.
942942 zarr_format : {2, 3, None}, optional
943943 The zarr format to use when saving.
944- path : string , optional
944+ path : str , optional
945945 Path in store to array.
946946 storage_options : dict
947947 If using an fsspec URL to create the store, these will be passed to
0 commit comments