File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -1090,7 +1090,7 @@ async def open_array(
10901090 try :
10911091 return await AsyncArray .open (store_path , zarr_format = zarr_format )
10921092 except FileNotFoundError :
1093- if not store_path .store . readonly :
1093+ if not store_path .readonly :
10941094 return await create (
10951095 store = store_path ,
10961096 zarr_format = zarr_format or _default_zarr_version (),
Original file line number Diff line number Diff line change @@ -772,7 +772,7 @@ def read_only(self) -> bool:
772772 True if the array is read-only
773773 """
774774 # Backwards compatibility for 2.x
775- return self .store_path .store . readonly
775+ return self .store_path .readonly
776776
777777 @property
778778 def path (self ) -> str :
Original file line number Diff line number Diff line change @@ -815,7 +815,7 @@ def store(self) -> Store:
815815 @property
816816 def read_only (self ) -> bool :
817817 # Backwards compatibility for 2.x
818- return self .store_path .store . readonly
818+ return self .store_path .readonly
819819
820820 @property
821821 def synchronizer (self ) -> None :
You can’t perform that action at this time.
0 commit comments