From 98bf48824134eeaf8391d0d6a8c02c0c00bbd712 Mon Sep 17 00:00:00 2001 From: Robin Wilson Date: Sat, 29 Aug 2015 23:26:22 +0100 Subject: [PATCH] Fixed indentation --- skimage/feature/_canny.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/skimage/feature/_canny.py b/skimage/feature/_canny.py index 43695645..da18508d 100644 --- a/skimage/feature/_canny.py +++ b/skimage/feature/_canny.py @@ -51,7 +51,7 @@ def smooth_with_function_and_mask(image, function, mask): def canny(image, sigma=1., low_threshold=None, high_threshold=None, mask=None, - use_quantiles=False): + use_quantiles=False): """Edge filter an image using the Canny algorithm. Parameters