Skip to content

Commit

Permalink
remove vestigial cache_array_keys
Browse files Browse the repository at this point in the history
  • Loading branch information
d-v-b committed Dec 17, 2024
1 parent d0bb5a2 commit 65cadcb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions xarray/backends/zarr.py
Original file line number Diff line number Diff line change
Expand Up @@ -1560,7 +1560,7 @@ def open_dataset(
store=None,
engine=None,
use_zarr_fill_value_as_mask=None,
cache_array_keys: bool = True,
cache_members: bool = True,
) -> Dataset:
filename_or_obj = _normalize_path(filename_or_obj)
if not store:
Expand All @@ -1576,7 +1576,7 @@ def open_dataset(
zarr_version=zarr_version,
use_zarr_fill_value_as_mask=None,
zarr_format=zarr_format,
cache_members=cache_array_keys,
cache_members=cache_members,
)

store_entrypoint = StoreBackendEntrypoint()
Expand Down

0 comments on commit 65cadcb

Please sign in to comment.