Skip to content

Commit

Permalink
removes paren
Browse files Browse the repository at this point in the history
  • Loading branch information
scottsievert committed Dec 13, 2015
1 parent 4d6c9e7 commit 2892e90
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion skimage/restoration/deconvolution.py
Original file line number Diff line number Diff line change
Expand Up @@ -375,7 +375,7 @@ def fft_time(img_shape, kernel_shape):

# 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:
Expand Down

0 comments on commit 2892e90

Please sign in to comment.