diff options
author | Roman Yurchak <rth.yurchak@pm.me> | 2018-12-06 20:05:08 +0100 |
---|---|---|
committer | Charles Harris <charlesr.harris@gmail.com> | 2018-12-06 11:05:08 -0800 |
commit | 45cef38cda80868355a920b5e94211dcf662ea07 (patch) | |
tree | e353794e418c2900e92c82e519e87f990605de60 /numpy/lib/_iotools.py | |
parent | 8ffa2273ce739fe2b38b09f7f8aa37fde1591a18 (diff) | |
download | numpy-45cef38cda80868355a920b5e94211dcf662ea07.tar.gz |
MAINT: Review F401,F841,F842 flake8 errors (unused variables and imports) (#12448)
* Review F401,F841,F842 flake8 errors (unused variables, imports)
* Review comments
* More tests in test_installed_npymath_ini
* Review comments
Diffstat (limited to 'numpy/lib/_iotools.py')
-rw-r--r-- | numpy/lib/_iotools.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/lib/_iotools.py b/numpy/lib/_iotools.py index d5d990a9a..8a042f190 100644 --- a/numpy/lib/_iotools.py +++ b/numpy/lib/_iotools.py @@ -8,7 +8,7 @@ __docformat__ = "restructuredtext en" import sys import numpy as np import numpy.core.numeric as nx -from numpy.compat import asbytes, asunicode, bytes, asbytes_nested, basestring +from numpy.compat import asbytes, asunicode, bytes, basestring if sys.version_info[0] >= 3: from builtins import bool, int, float, complex, object, str |