From f2246027fd350b676c18ac99955bcbaa1b0f3f9a Mon Sep 17 00:00:00 2001 From: Tony S Yu Date: Mon, 3 Sep 2012 07:55:05 -0400 Subject: [PATCH] STY: Clean up imports --- skimage/filter/tests/test_edges.py | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/skimage/filter/tests/test_edges.py b/skimage/filter/tests/test_edges.py index bd9a2702..44791728 100644 --- a/skimage/filter/tests/test_edges.py +++ b/skimage/filter/tests/test_edges.py @@ -1,11 +1,6 @@ -import os - -from numpy.testing import * import numpy as np -from scipy.ndimage import binary_dilation, binary_erosion import skimage.filter as F -from skimage import data_dir, img_as_float class TestSobel(): @@ -208,4 +203,5 @@ class TestVPrewitt(): if __name__ == "__main__": - run_module_suite() + from numpy import testing + testing.run_module_suite()