Skip to content

Commit 70690e6

Browse files
daspk04Kirill888
authored andcommitted
[FIX] Fix import error on dask 2025.3.0
* Move `quote` import from `dask.base` to `dask.core`
1 parent 746a8e8 commit 70690e6

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/odc/loader/_builder.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,8 @@
2727
from dask import array as da
2828
from dask import is_dask_collection
2929
from dask.array.core import normalize_chunks
30-
from dask.base import quote, tokenize
30+
from dask.base import tokenize
31+
from dask.core import quote
3132
from dask.highlevelgraph import HighLevelGraph
3233
from dask.typing import Key
3334
from numpy.typing import DTypeLike

0 commit comments

Comments
 (0)