From d2fb06fa3b460f0fa76d64ed9e59bb9065cc02fc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jostein=20B=C3=B8=20Fl=C3=B8ystad?= Date: Mon, 8 Jul 2013 12:29:53 +0200 Subject: [PATCH] unwrap: Whitespace fixes. --- skimage/exposure/unwrap.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/skimage/exposure/unwrap.py b/skimage/exposure/unwrap.py index 0c76ea94..eb3e442b 100644 --- a/skimage/exposure/unwrap.py +++ b/skimage/exposure/unwrap.py @@ -1,8 +1,9 @@ import numpy as np -def unwrap(wrapped_array, - wrap_around_axis_0 = False, - wrap_around_axis_1 = False, + +def unwrap(wrapped_array, + wrap_around_axis_0 = False, + wrap_around_axis_1 = False, wrap_around_axis_2 = False): wrapped_array = np.require(wrapped_array, np.float32, ['C'])