Skip to content

Commit

Permalink
Merge pull request #12 from dClimate/allow-zarr-version-bump
Browse files Browse the repository at this point in the history
kwargs passed to getitems to support more zarr versions
  • Loading branch information
eschechter authored Sep 25, 2023
2 parents e46e4f9 + 11410de commit 403abb4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ipldstore/ipldstore.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ def __init__(
self._store = castore or MappingCAStore()
if isinstance(self._store, IPFSStore) and should_async_get:
# Monkey patch zarr to use the async get of multiple chunks
def storage_getitems(kv_self, keys, on_error="omit"):
def storage_getitems(kv_self, keys, on_error="omit", **kwargs):
return kv_self._mutable_mapping.getitems(keys)

import zarr
Expand Down

0 comments on commit 403abb4

Please sign in to comment.