From b6d15c91c7b9a04f2edaf5635da986a3f4cb0713 Mon Sep 17 00:00:00 2001 From: Chintak Sheth Date: Wed, 22 May 2013 00:26:26 +0530 Subject: [PATCH] Remove trailing whitespace --- skimage/morphology/convex_hull.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/skimage/morphology/convex_hull.py b/skimage/morphology/convex_hull.py index 6cb9f653..24b45db2 100644 --- a/skimage/morphology/convex_hull.py +++ b/skimage/morphology/convex_hull.py @@ -41,7 +41,7 @@ def convex_hull_image(image): for i, (x_offset, y_offset) in enumerate(zip((0, 0, -0.5, 0.5), (-0.5, 0.5, 0, 0))): coords_corners[i * N:(i + 1) * N] = coords + [x_offset, y_offset] - + coords = coords_corners try: