Skip to content

Commit

Permalink
Drop new, non interesting param
Browse files Browse the repository at this point in the history
  • Loading branch information
alexamici committed Feb 13, 2025
1 parent 6230609 commit 99fe0d1
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions xarray_ecmwf/engine_ecmwf.py
Original file line number Diff line number Diff line change
Expand Up @@ -130,6 +130,7 @@ def retrieve_once(
@contextlib.contextmanager
def cached_empty_dataset(self, request: dict[str, Any]) -> Iterator[xr.Dataset]:
LOGGER.info(f"cached_empty_dataset {request}")
request = {k: v for k, v in request.items() if k != "download_format"}
filename = hashlib.md5(str(request).encode("utf-8")).hexdigest() + ".zarr"
path = os.path.join(self.cache_folder, filename)

Expand Down

0 comments on commit 99fe0d1

Please sign in to comment.