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/f2py/tests/util.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/f2py/tests/util.py')
-rw-r--r-- | numpy/f2py/tests/util.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/numpy/f2py/tests/util.py b/numpy/f2py/tests/util.py index 73fc27b96..5fa5dadd2 100644 --- a/numpy/f2py/tests/util.py +++ b/numpy/f2py/tests/util.py @@ -15,9 +15,7 @@ import shutil import atexit import textwrap import re -import random import pytest -import numpy.f2py from numpy.compat import asbytes, asstr from numpy.testing import temppath @@ -26,7 +24,7 @@ from importlib import import_module try: from hashlib import md5 except ImportError: - from md5 import new as md5 + from md5 import new as md5 # noqa: F401 # # Maintaining a temporary module directory |