From 4e0db80c24085f4d18e7482c866870f227f2dbc8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Boulogne?= Date: Wed, 20 Mar 2013 18:30:52 +0100 Subject: [PATCH] remove docstring --- skimage/transform/hough_transform.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/skimage/transform/hough_transform.py b/skimage/transform/hough_transform.py index 0d7196c8..f112a025 100644 --- a/skimage/transform/hough_transform.py +++ b/skimage/transform/hough_transform.py @@ -100,9 +100,6 @@ from skimage._shared.utils import deprecated @deprecated('hough_line') def hough(img, theta=None): - """ - This function is deprecated. Use `hough_line` instead. - """ return hough_line(img, theta) from ._hough_transform import _hough_circle