Skip to content

Commit

Permalink
Use dask.dataframe.core, not new dask-expr.
Browse files Browse the repository at this point in the history
  • Loading branch information
danielballan committed Mar 12, 2024
1 parent 52ec6b8 commit 2f1631c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tiled/client/dataframe.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import dask
import dask.dataframe
import dask.dataframe.core

from ..serialization.table import deserialize_arrow, serialize_arrow
from ..utils import APACHE_ARROW_FILE_MIME_TYPE, UNCHANGED
Expand Down Expand Up @@ -162,7 +162,7 @@ def read(self, columns=None):

if columns is not None:
meta = meta[columns]
ddf = dask.dataframe.DataFrame(
ddf = dask.dataframe.core.DataFrame(
dask_tasks,
name=name,
meta=meta,
Expand Down

0 comments on commit 2f1631c

Please sign in to comment.