Remove unused imports

This commit is contained in:
Tony S Yu
2012-05-08 21:28:49 -04:00
parent 23311a0993
commit 424a2b8e52
2 changed files with 4 additions and 7 deletions
-2
View File
@@ -1,8 +1,6 @@
#!/usr/bin/env python
import os
import shutil
import hashlib
from skimage._build import cython
+4 -5
View File
@@ -1,8 +1,5 @@
import os.path
import numpy as np
from numpy.testing import *
from skimage import data_dir
from skimage.detection import *
from skimage.detection import match_template
from numpy.random import randn
def test_template():
@@ -43,4 +40,6 @@ def test_template():
assert found
if __name__ == "__main__":
run_module_suite()
from numpy import testing
testing.run_module_suite()