From 7256f88332d85481717681964815aa69d6a0909f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Johannes=20Sch=C3=B6nberger?= Date: Thu, 27 Nov 2014 12:02:30 -0500 Subject: [PATCH] Add missing comma --- skimage/filters/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/skimage/filters/__init__.py b/skimage/filters/__init__.py index 7eefe7d4..eb7b7f82 100644 --- a/skimage/filters/__init__.py +++ b/skimage/filters/__init__.py @@ -38,7 +38,7 @@ __all__ = ['inverse', 'hsobel', 'vsobel', 'sobel_h', - 'sobel_v' + 'sobel_v', 'scharr', 'hscharr', 'vscharr',