Skip to content

Commit

Permalink
Update features.py
Browse files Browse the repository at this point in the history
tdir+"/"
  • Loading branch information
felicio93 authored Jul 2, 2024
1 parent 3ac61ff commit 3f0d9cc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/api/features.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ def test_ctor_args_4(self):

with tempfile.TemporaryDirectory() as tdir:

shape_path = Path(tdir) /
shape_path = tdir+"/"

gdf = gpd.GeoDataFrame(geometry=[self._mult_line_1], crs=self._crs_2)
gdf.to_file(shape_path, mode='a')
Expand Down Expand Up @@ -90,7 +90,7 @@ def test_ctor_args_6(self):

with tempfile.TemporaryDirectory() as tdir:

shape_path = Path(tdir) /
shape_path = tdir+"/"

# NOTE: This time shapefile doesn't have CRS
gdf = gpd.GeoDataFrame(geometry=[self._mult_line_1])
Expand Down

0 comments on commit 3f0d9cc

Please sign in to comment.