Skip to content

Commit

Permalink
make type hint accurate
Browse files Browse the repository at this point in the history
  • Loading branch information
d-v-b committed Dec 6, 2024
1 parent bec8b42 commit 61fe759
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion xarray/backends/zarr.py
Original file line number Diff line number Diff line change
Expand Up @@ -750,7 +750,7 @@ def __init__(
self._close_store_on_close = close_store_on_close
self._use_zarr_fill_value_as_mask = use_zarr_fill_value_as_mask

self._cache: dict[str, tuple[str, ...]] = {}
self._cache: dict[str, None | tuple[str, ...]] = {}
if cache_array_keys:
self._cache["array_keys"] = None

Expand Down

0 comments on commit 61fe759

Please sign in to comment.