From 2892e90abc1afd5271a8f0633b4a4f81a2ef3cda Mon Sep 17 00:00:00 2001 From: scottsievert Date: Sun, 13 Dec 2015 16:59:59 -0600 Subject: [PATCH] removes paren --- skimage/restoration/deconvolution.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/skimage/restoration/deconvolution.py b/skimage/restoration/deconvolution.py index c70030c5..3cfeb269 100644 --- a/skimage/restoration/deconvolution.py +++ b/skimage/restoration/deconvolution.py @@ -375,7 +375,7 @@ def richardson_lucy(image, psf, iterations=50, clip=True): # see whether the fourier transform convolution method or the direct # convolution method is faster (discussed in scikit-image PR #1792) - time_ratio = 40.032 * fft_time(image.shape, psf.shape)) + time_ratio = 40.032 * fft_time(image.shape, psf.shape) time_ratio /= direct_time(image.shape, psf.shape) if time_ratio <= 1 or len(image.shape) > 2: