summaryrefslogtreecommitdiff
path: root/numpy/lib/index_tricks.py
diff options
context:
space:
mode:
authorAlan McIntyre <alan.mcintyre@local>2008-09-18 03:33:58 +0000
committerAlan McIntyre <alan.mcintyre@local>2008-09-18 03:33:58 +0000
commit3c6341f1c5f932018875fa461ae51310cb419e14 (patch)
treede592a457bbedde578164b908683bb3c5139a78b /numpy/lib/index_tricks.py
parent5db4b8807b0293ba5627189be66e14e7a8e07749 (diff)
downloadnumpy-3c6341f1c5f932018875fa461ae51310cb419e14.tar.gz
Removed unused imports.
Diffstat (limited to 'numpy/lib/index_tricks.py')
-rw-r--r--numpy/lib/index_tricks.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/lib/index_tricks.py b/numpy/lib/index_tricks.py
index af87b24a6..02018c87e 100644
--- a/numpy/lib/index_tricks.py
+++ b/numpy/lib/index_tricks.py
@@ -7,7 +7,7 @@ __all__ = ['unravel_index',
import sys
import numpy.core.numeric as _nx
-from numpy.core.numeric import asarray, ScalarType, array, dtype
+from numpy.core.numeric import asarray, ScalarType, array
from numpy.core.numerictypes import find_common_type
import math