From acbee6b5164659b16d0d5db4b2fc28220bad35d8 Mon Sep 17 00:00:00 2001 From: "Jasper St. Pierre" Date: Wed, 3 Sep 2014 17:54:08 -0700 Subject: [PATCH] transform: Remove some leftovers in __all__ 5c9d7af removed a bunch of deprecated functions, but forgot to remove two more names from __all__. Yes, I know * imports are a bad idea, but we have an internal app that uses them. I've removed the * imports, but figured I might as well fix upstream. --- skimage/transform/__init__.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/skimage/transform/__init__.py b/skimage/transform/__init__.py index 877f1614..3049ebb0 100644 --- a/skimage/transform/__init__.py +++ b/skimage/transform/__init__.py @@ -18,8 +18,6 @@ __all__ = ['hough_circle', 'hough_ellipse', 'hough_line', 'probabilistic_hough_line', - 'probabilistic_hough', - 'hough_peaks', 'hough_line_peaks', 'radon', 'iradon',