Skip to content

Commit

Permalink
Fix missing Dask imports (#7580)
Browse files Browse the repository at this point in the history
dask/dask#7345 removed some imports that we were improperly using from a dask module. Fix the imports to properly target `fsspec`.

Authors:
  - Keith Kraus (@kkraus14)

Approvers:
  - @jakirkham
  - Ashwin Srinath (@shwina)

URL: #7580
  • Loading branch information
Keith Kraus authored Mar 12, 2021
1 parent ff0c537 commit 365e649
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion python/dask_cudf/dask_cudf/io/orc.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,12 @@

from io import BufferedWriter, IOBase

from fsspec.core import get_fs_token_paths
from fsspec.utils import stringify_path
from pyarrow import orc as orc

from dask import dataframe as dd
from dask.base import tokenize
from dask.bytes.core import get_fs_token_paths, stringify_path
from dask.dataframe.io.utils import _get_pyarrow_dtypes

import cudf
Expand Down

0 comments on commit 365e649

Please sign in to comment.