diff --git a/skimage/transform/_hough_transform.pyx b/skimage/transform/_hough_transform.pyx index a189d7b9..818bf489 100644 --- a/skimage/transform/_hough_transform.pyx +++ b/skimage/transform/_hough_transform.pyx @@ -229,7 +229,7 @@ def hough_ellipse(cnp.ndarray img, int threshold=4, double accuracy=1, def hough_line(cnp.ndarray img, - cnp.ndarray[ndim=1, dtype=cnp.double_t] theta=None): + cnp.ndarray[ndim=1, dtype=cnp.double_t] theta): """Perform a straight line Hough transform. Parameters