From 2f784366b7f1ccc9e8ec18f9e1baf9c53bc4e055 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jostein=20B=C3=B8=20Fl=C3=B8ystad?= Date: Mon, 8 Jul 2013 14:26:37 +0200 Subject: [PATCH] unwrap: Correct use of relative imports. --- skimage/exposure/unwrap.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/skimage/exposure/unwrap.py b/skimage/exposure/unwrap.py index d83c2c65..648842db 100644 --- a/skimage/exposure/unwrap.py +++ b/skimage/exposure/unwrap.py @@ -1,7 +1,7 @@ import numpy as np -import ._unwrap_2d -import ._unwrap_3d +from . import _unwrap_2d +from . import _unwrap_3d def unwrap(image, wrap_around=False):