From 79972c301306e9eac102e2aa6664dd0ad146c1c6 Mon Sep 17 00:00:00 2001 From: Zach Pincus Date: Thu, 7 Jun 2012 08:55:35 -0400 Subject: [PATCH] Indent 4 --- skimage/graph/_mcp.pyx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/skimage/graph/_mcp.pyx b/skimage/graph/_mcp.pyx index 39640c49..beb814fe 100644 --- a/skimage/graph/_mcp.pyx +++ b/skimage/graph/_mcp.pyx @@ -111,8 +111,8 @@ def _offset_edge_map(shape, offsets): maxes = offsets.max(axis=0) mins = offsets.min(axis=0) for pos, neg, mx, mn in zip(pos_edges, neg_edges, maxes, mins): - pos[pos > mx] = 0 - neg[neg < mn] = 0 + pos[pos > mx] = 0 + neg[neg < mn] = 0 return pos_edges.astype(EDGE_D), neg_edges.astype(EDGE_D) def make_offsets(d, fully_connected):