From 1814cc44ca2a3f8dd388f4265ecfdabee1e93bff Mon Sep 17 00:00:00 2001 From: Chintak Sheth Date: Wed, 22 May 2013 00:25:46 +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 3594def8..6cb9f653 100644 --- a/skimage/morphology/convex_hull.py +++ b/skimage/morphology/convex_hull.py @@ -38,7 +38,7 @@ def convex_hull_image(image): # Add a vertex for the middle of each pixel edge coords_corners = np.empty((N * 4, 2)) - for i, (x_offset, y_offset) in enumerate(zip((0, 0, -0.5, 0.5), + 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]