Skip to content

Commit

Permalink
Fix missing Dask imports (rapidsai#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: rapidsai#7580
  • Loading branch information
Keith Kraus authored and hyperbolic2346 committed Mar 23, 2021
1 parent 5c5beb1 commit 66beb63
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 66beb63

Please sign in to comment.