File tree Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -85,13 +85,13 @@ def open_group(
8585 if isinstance (store , os .PathLike ):
8686 store = os .fspath (store )
8787
88- open_kwargs = dict (
89- mode = mode ,
90- synchronizer = synchronizer ,
91- path = group ,
88+ open_kwargs = {
89+ " mode" : mode ,
90+ " synchronizer" : synchronizer ,
91+ " path" : group ,
9292 ########## NEW STUFF
93- meta_array = cp .empty (()),
94- )
93+ " meta_array" : cp .empty (()),
94+ }
9595 open_kwargs ["storage_options" ] = storage_options
9696
9797 if chunk_store :
Original file line number Diff line number Diff line change 22import numpy as np
33import pytest
44import xarray as xr
5+ from xarray .core .indexing import ExplicitlyIndexedNDArrayMixin
56
67kvikio = pytest .importorskip ("kvikio" )
78zarr = pytest .importorskip ("zarr" )
89
910import kvikio .zarr # noqa
1011import xarray .core .indexing # noqa
11- from xarray .core .indexing import ExplicitlyIndexedNDArrayMixin
1212
1313
1414@pytest .fixture
You can’t perform that action at this time.
0 commit comments