Skip to content

Commit

Permalink
MNT #848 latest dask version has new path to DataFrame class
Browse files Browse the repository at this point in the history
  • Loading branch information
prjemian authored Jan 17, 2025
1 parent c5a01ee commit e3c2422
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,7 +1,7 @@
from urllib.parse import parse_qs, urlparse

import dask
import dask.dataframe.core
import dask.dataframe
import httpx

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

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

0 comments on commit e3c2422

Please sign in to comment.