Skip to content

Commit ac26236

Browse files
committed
fix: change import to remove DeprecationWarning
1 parent e76feba commit ac26236

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

src/propagator/io/writer/isochrones_geojson.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,8 @@
99
from pyproj import CRS
1010
from rasterio.features import shapes # type: ignore
1111
from rasterio.transform import Affine # type: ignore
12-
from scipy.ndimage.filters import gaussian_filter1d
13-
from scipy.ndimage.morphology import binary_dilation, binary_erosion
14-
from scipy.signal.signaltools import medfilt2d
12+
from scipy.ndimage import binary_dilation, binary_erosion, gaussian_filter1d
13+
from scipy.signal import medfilt2d
1514
from shapely.geometry import LineString, MultiLineString, shape
1615

1716
from propagator.core.models import PropagatorOutput

0 commit comments

Comments
 (0)