From 0e573f71af8de5a265f3a8ef06df6f8fd29b15e8 Mon Sep 17 00:00:00 2001 From: Blake Griffith Date: Mon, 18 May 2015 14:27:55 -0500 Subject: [PATCH] Use absolute import --- skimage/util/tests/test_apply_parallel.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/skimage/util/tests/test_apply_parallel.py b/skimage/util/tests/test_apply_parallel.py index c0d3f44d..a43f4338 100644 --- a/skimage/util/tests/test_apply_parallel.py +++ b/skimage/util/tests/test_apply_parallel.py @@ -1,8 +1,10 @@ +from __future__ import absolute_import + import numpy as np from numpy.testing import assert_array_almost_equal from skimage.filters import threshold_adaptive, gaussian_filter -from skimage.util import apply_parallel +from skimage.util.apply_parallel import apply_parallel def test_apply_parallel():