Skip to content

Commit d867bc2

Browse files
committed
scalar imports
1 parent 891c751 commit d867bc2

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

dask_geopandas/io/arrow.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,7 @@
99

1010
import dask
1111
from dask.base import compute_as_if_collection, tokenize
12-
from dask.dataframe import from_graph
13-
from dask.dataframe.dask_expr._collection import Scalar
12+
from dask.dataframe import Scalar, from_graph
1413
from dask.highlevelgraph import HighLevelGraph
1514
from dask.layers import DataFrameIOLayer
1615
from dask.utils import apply, natural_sort_key

dask_geopandas/tests/test_core.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
import dask
88
import dask.dataframe as dd
9-
from dask.dataframe.dask_expr._collection import Scalar
9+
from dask.dataframe import Scalar
1010

1111
import geopandas
1212
from shapely.geometry import LineString, MultiPoint, Point, Polygon

0 commit comments

Comments
 (0)