Skip to content

Commit

Permalink
fix docstring format
Browse files Browse the repository at this point in the history
  • Loading branch information
brokkoli71 committed Oct 23, 2024
1 parent 7bb9c53 commit 00fb6e0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/zarr/api/asynchronous.py
Original file line number Diff line number Diff line change
Expand Up @@ -346,7 +346,7 @@ async def save(
NumPy arrays with data to save.
zarr_format : {2, 3, None}, optional
The zarr format to use when saving.
mode: {'r', 'r+', 'a', 'w', 'w-'}, optional
mode : {'r', 'r+', 'a', 'w', 'w-'}, optional
Persistence mode: 'r' means read only (must exist); 'r+' means
read/write (must exist); 'a' means read/write (create if doesn't
exist); 'w' means create (overwrite if exists); 'w-' means create
Expand Down Expand Up @@ -395,7 +395,7 @@ async def save_array(
NumPy array with data to save.
zarr_format : {2, 3, None}, optional
The zarr format to use when saving.
mode: {'r', 'r+', 'a', 'w', 'w-'}, optional
mode : {'r', 'r+', 'a', 'w', 'w-'}, optional
Persistence mode: 'r' means read only (must exist); 'r+' means
read/write (must exist); 'a' means read/write (create if doesn't
exist); 'w' means create (overwrite if exists); 'w-' means create
Expand Down Expand Up @@ -446,7 +446,7 @@ async def save_group(
NumPy arrays with data to save.
zarr_format : {2, 3, None}, optional
The zarr format to use when saving.
mode: {'r', 'r+', 'a', 'w', 'w-'}, optional
mode : {'r', 'r+', 'a', 'w', 'w-'}, optional
Persistence mode: 'r' means read only (must exist); 'r+' means
read/write (must exist); 'a' means read/write (create if doesn't
exist); 'w' means create (overwrite if exists); 'w-' means create
Expand Down

0 comments on commit 00fb6e0

Please sign in to comment.