From 9c78fce4cd253162a06613384b49c3ad0428af9c Mon Sep 17 00:00:00 2001 From: Juan Nunez-Iglesias Date: Sun, 11 Jan 2015 11:51:29 +1100 Subject: [PATCH] Remove unused deprecation warning --- skimage/segmentation/boundaries.py | 1 - 1 file changed, 1 deletion(-) diff --git a/skimage/segmentation/boundaries.py b/skimage/segmentation/boundaries.py index 89127401..255f9816 100644 --- a/skimage/segmentation/boundaries.py +++ b/skimage/segmentation/boundaries.py @@ -3,7 +3,6 @@ from scipy import ndimage as nd from ..morphology import dilation, erosion, square from ..util import img_as_float from ..color import gray2rgb -from .._shared.utils import deprecated def find_boundaries(label_img, connectivity=1, mode='thick', background=0):