Skip to content

Commit 00fb6e0

Browse files
committed
fix docstring format
1 parent 7bb9c53 commit 00fb6e0

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/zarr/api/asynchronous.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -346,7 +346,7 @@ async def save(
346346
NumPy arrays with data to save.
347347
zarr_format : {2, 3, None}, optional
348348
The zarr format to use when saving.
349-
mode: {'r', 'r+', 'a', 'w', 'w-'}, optional
349+
mode : {'r', 'r+', 'a', 'w', 'w-'}, optional
350350
Persistence mode: 'r' means read only (must exist); 'r+' means
351351
read/write (must exist); 'a' means read/write (create if doesn't
352352
exist); 'w' means create (overwrite if exists); 'w-' means create
@@ -395,7 +395,7 @@ async def save_array(
395395
NumPy array with data to save.
396396
zarr_format : {2, 3, None}, optional
397397
The zarr format to use when saving.
398-
mode: {'r', 'r+', 'a', 'w', 'w-'}, optional
398+
mode : {'r', 'r+', 'a', 'w', 'w-'}, optional
399399
Persistence mode: 'r' means read only (must exist); 'r+' means
400400
read/write (must exist); 'a' means read/write (create if doesn't
401401
exist); 'w' means create (overwrite if exists); 'w-' means create
@@ -446,7 +446,7 @@ async def save_group(
446446
NumPy arrays with data to save.
447447
zarr_format : {2, 3, None}, optional
448448
The zarr format to use when saving.
449-
mode: {'r', 'r+', 'a', 'w', 'w-'}, optional
449+
mode : {'r', 'r+', 'a', 'w', 'w-'}, optional
450450
Persistence mode: 'r' means read only (must exist); 'r+' means
451451
read/write (must exist); 'a' means read/write (create if doesn't
452452
exist); 'w' means create (overwrite if exists); 'w-' means create

0 commit comments

Comments
 (0)