Skip to content

Commit 6ad144d

Browse files
Update src/zarr/storage/_local.py
Co-authored-by: Tom Augspurger <[email protected]>
1 parent 22592ec commit 6ad144d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/zarr/storage/_local.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ def _put(
5454
f.write(value.as_numpy_array()) # type: ignore[arg-type]
5555
return None
5656
else:
57-
view = memoryview(value.as_numpy_array())
57+
view = memoryview(value.as_numpy_array()) # type: ignore[arg-type]
5858
if exclusive:
5959
mode = "xb"
6060
else:

0 commit comments

Comments
 (0)