Skip to content
Merged
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions cupy_xarray/accessors.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@
try:
import dask.array

dask_array_type = dask.array.Array
dask_array_type = (dask.array.Array,)
except ImportError:
dask_array_type = None
dask_array_type = ()


@register_dataarray_accessor("cupy")
Expand Down
Loading