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.
import zarr import zarr.storage store = zarr.storage.MemoryStore() zarr.create((100,), store=store, zarr_format=2, path="a") arr = zarr.open_array(store=store, path="a", zarr_format=2, mode="r") print(arr.read_only) # False
Given the mode is "r", I think .read_only should return True?
.read_only
True