@@ -159,7 +159,7 @@ async def load(
159
159
160
160
Parameters
161
161
----------
162
- store : Store or string
162
+ store : Store or str
163
163
Store or path to directory in file system or name of zip file.
164
164
path : str or None, optional
165
165
The path within the store from which to load.
@@ -203,7 +203,7 @@ async def open(
203
203
204
204
Parameters
205
205
----------
206
- store : Store or string , optional
206
+ store : Store or str , optional
207
207
Store or path to directory in file system or name of zip file.
208
208
mode : {'r', 'r+', 'a', 'w', 'w-'}, optional
209
209
Persistence mode: 'r' means read only (must exist); 'r+' means
@@ -267,7 +267,7 @@ async def save(
267
267
268
268
Parameters
269
269
----------
270
- store : Store or string
270
+ store : Store or str
271
271
Store or path to directory in file system or name of zip file.
272
272
args : ndarray
273
273
NumPy arrays with data to save.
@@ -303,7 +303,7 @@ async def save_array(
303
303
304
304
Parameters
305
305
----------
306
- store : Store or string
306
+ store : Store or str
307
307
Store or path to directory in file system or name of zip file.
308
308
arr : ndarray
309
309
NumPy array with data to save.
@@ -351,7 +351,7 @@ async def save_group(
351
351
352
352
Parameters
353
353
----------
354
- store : Store or string
354
+ store : Store or str
355
355
Store or path to directory in file system or name of zip file.
356
356
args : ndarray
357
357
NumPy arrays with data to save.
@@ -467,7 +467,7 @@ async def group(
467
467
468
468
Parameters
469
469
----------
470
- store : Store or string , optional
470
+ store : Store or str , optional
471
471
Store or path to directory in file system.
472
472
overwrite : bool, optional
473
473
If True, delete any pre-existing data in `store` at `path` before
@@ -481,7 +481,7 @@ async def group(
481
481
to all attribute read operations.
482
482
synchronizer : object, optional
483
483
Array synchronizer.
484
- path : string , optional
484
+ path : str , optional
485
485
Group path within store.
486
486
meta_array : array-like, optional
487
487
An array instance to use for determining arrays to create and return
@@ -547,7 +547,7 @@ async def open_group(
547
547
548
548
Parameters
549
549
----------
550
- store : Store, string , or mapping, optional
550
+ store : Store, str , or mapping, optional
551
551
Store or path to directory in file system or name of zip file.
552
552
553
553
Strings are interpreted as paths on the local file system
@@ -570,9 +570,9 @@ async def open_group(
570
570
to all attribute read operations.
571
571
synchronizer : object, optional
572
572
Array synchronizer.
573
- path : string , optional
573
+ path : str , optional
574
574
Group path within store.
575
- chunk_store : Store or string , optional
575
+ chunk_store : Store or str , optional
576
576
Store or path to directory in file system or name of zip file.
577
577
storage_options : dict
578
578
If using an fsspec URL to create the store, these will be passed to
@@ -664,22 +664,22 @@ async def create(
664
664
False, will be set to `shape`, i.e., single chunk for the whole array.
665
665
If an int, the chunk size in each dimension will be given by the value
666
666
of `chunks`. Default is True.
667
- dtype : string or dtype, optional
667
+ dtype : str or dtype, optional
668
668
NumPy dtype.
669
669
compressor : Codec, optional
670
670
Primary compressor.
671
671
fill_value : object
672
672
Default value to use for uninitialized portions of the array.
673
673
order : {'C', 'F'}, optional
674
674
Memory layout to be used within each chunk.
675
- store : Store or string
675
+ store : Store or str
676
676
Store or path to directory in file system or name of zip file.
677
677
synchronizer : object, optional
678
678
Array synchronizer.
679
679
overwrite : bool, optional
680
680
If True, delete all pre-existing data in `store` at `path` before
681
681
creating the array.
682
- path : string , optional
682
+ path : str , optional
683
683
Path under which array is stored.
684
684
chunk_store : MutableMapping, optional
685
685
Separate storage for chunks. If not provided, `store` will be used
@@ -937,11 +937,11 @@ async def open_array(
937
937
938
938
Parameters
939
939
----------
940
- store : Store or string
940
+ store : Store or str
941
941
Store or path to directory in file system or name of zip file.
942
942
zarr_format : {2, 3, None}, optional
943
943
The zarr format to use when saving.
944
- path : string , optional
944
+ path : str , optional
945
945
Path in store to array.
946
946
storage_options : dict
947
947
If using an fsspec URL to create the store, these will be passed to
0 commit comments