Skip to content

Commit 4dc139d

Browse files
committed
don't use deprecated attribute
1 parent c2dea14 commit 4dc139d

1 file changed

Lines changed: 7 additions & 7 deletions

File tree

src/zarr/core/array.py

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1581,7 +1581,7 @@ async def _get_selection(
15811581
self.store_path,
15821582
self.metadata,
15831583
self.codec_pipeline,
1584-
self._config,
1584+
self.config,
15851585
indexer,
15861586
prototype=prototype,
15871587
out=out,
@@ -1635,7 +1635,7 @@ async def example():
16351635
self.store_path,
16361636
self.metadata,
16371637
self.codec_pipeline,
1638-
self._config,
1638+
self.config,
16391639
selection,
16401640
prototype=prototype,
16411641
)
@@ -1652,7 +1652,7 @@ async def get_orthogonal_selection(
16521652
self.store_path,
16531653
self.metadata,
16541654
self.codec_pipeline,
1655-
self._config,
1655+
self.config,
16561656
selection,
16571657
out=out,
16581658
fields=fields,
@@ -1671,7 +1671,7 @@ async def get_mask_selection(
16711671
self.store_path,
16721672
self.metadata,
16731673
self.codec_pipeline,
1674-
self._config,
1674+
self.config,
16751675
mask,
16761676
out=out,
16771677
fields=fields,
@@ -1690,7 +1690,7 @@ async def get_coordinate_selection(
16901690
self.store_path,
16911691
self.metadata,
16921692
self.codec_pipeline,
1693-
self._config,
1693+
self.config,
16941694
selection,
16951695
out=out,
16961696
fields=fields,
@@ -1715,7 +1715,7 @@ async def _set_selection(
17151715
self.store_path,
17161716
self.metadata,
17171717
self.codec_pipeline,
1718-
self._config,
1718+
self.config,
17191719
indexer,
17201720
value,
17211721
prototype=prototype,
@@ -1765,7 +1765,7 @@ async def setitem(
17651765
self.store_path,
17661766
self.metadata,
17671767
self.codec_pipeline,
1768-
self._config,
1768+
self.config,
17691769
selection,
17701770
value,
17711771
prototype=prototype,

0 commit comments

Comments
 (0)