We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9e8b50a commit 74db438Copy full SHA for 74db438
src/zarr/storage/_local.py
@@ -51,10 +51,10 @@ def _put(
51
if start is not None:
52
with path.open("r+b") as f:
53
f.seek(start)
54
- f.write(value.as_numpy_array().tobytes())
+ f.write(value.as_numpy_array())
55
return None
56
else:
57
- view = memoryview(value.as_numpy_array().tobytes())
+ view = memoryview(value.as_numpy_array())
58
if exclusive:
59
mode = "xb"
60
0 commit comments