File tree 2 files changed +7
-7
lines changed
2 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -85,13 +85,13 @@ def open_group(
85
85
if isinstance (store , os .PathLike ):
86
86
store = os .fspath (store )
87
87
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 ,
92
92
########## NEW STUFF
93
- meta_array = cp .empty (()),
94
- )
93
+ " meta_array" : cp .empty (()),
94
+ }
95
95
open_kwargs ["storage_options" ] = storage_options
96
96
97
97
if chunk_store :
Original file line number Diff line number Diff line change 2
2
import numpy as np
3
3
import pytest
4
4
import xarray as xr
5
+ from xarray .core .indexing import ExplicitlyIndexedNDArrayMixin
5
6
6
7
kvikio = pytest .importorskip ("kvikio" )
7
8
zarr = pytest .importorskip ("zarr" )
8
9
9
10
import kvikio .zarr # noqa
10
11
import xarray .core .indexing # noqa
11
- from xarray .core .indexing import ExplicitlyIndexedNDArrayMixin
12
12
13
13
14
14
@pytest .fixture
You can’t perform that action at this time.
0 commit comments