Skip to content

Commit bf2b0b1

Browse files
committed
default mode=None for zarr.synchronous.open
1 parent b3a99f5 commit bf2b0b1

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/zarr/api/synchronous.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ def load(
158158
def open(
159159
store: StoreLike | None = None,
160160
*,
161-
mode: AccessModeLiteral = "a",
161+
mode: AccessModeLiteral | None = None,
162162
zarr_version: ZarrFormat | None = None, # deprecated
163163
zarr_format: ZarrFormat | None = None,
164164
path: str | None = None,

0 commit comments

Comments
 (0)