From 4a0b99ad6ff2d5fd7e87a80b752598e2a8646c48 Mon Sep 17 00:00:00 2001 From: Adam Feuer Date: Fri, 25 Jul 2014 07:10:50 -0700 Subject: [PATCH] fixed bad indent --- skimage/io/tests/test_pil.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/skimage/io/tests/test_pil.py b/skimage/io/tests/test_pil.py index b84bf074..e5e7647c 100644 --- a/skimage/io/tests/test_pil.py +++ b/skimage/io/tests/test_pil.py @@ -167,7 +167,7 @@ def test_imsave_filelike(): @skipif(not PIL_available) def test_imexport_imimport(): - shape = (2, 2) + shape = (2, 2) image = np.zeros(shape) pil_image = imexport(image) out = imimport(pil_image)