diff options
| author | Mike Taves <mwtoews@gmail.com> | 2020-02-05 08:21:51 +1300 |
|---|---|---|
| committer | Mike Taves <mwtoews@gmail.com> | 2020-02-06 22:16:23 +1300 |
| commit | 07bf33fbf5be8143aab037dc65aba3086f8badf6 (patch) | |
| tree | 8f48992ca38bafe589ed331f54c43106ba23902d /numpy/testing | |
| parent | a9bc5db4671c6c702e3a8a35fbf31b8d3225fad2 (diff) | |
| download | numpy-07bf33fbf5be8143aab037dc65aba3086f8badf6.tar.gz | |
MAINT: cleanup unused imports; avoid redefinition of imports
* Cleanup unused imports (F401) of mostly standard Python modules,
or some internal but unlikely referenced modules
* Where internal imports are potentially used, mark with noqa
* Avoid redefinition of imports (F811)
Diffstat (limited to 'numpy/testing')
| -rw-r--r-- | numpy/testing/_private/parameterized.py | 1 | ||||
| -rw-r--r-- | numpy/testing/tests/test_utils.py | 1 |
2 files changed, 0 insertions, 2 deletions
diff --git a/numpy/testing/_private/parameterized.py b/numpy/testing/_private/parameterized.py index 382585345..3bd8ede91 100644 --- a/numpy/testing/_private/parameterized.py +++ b/numpy/testing/_private/parameterized.py @@ -31,7 +31,6 @@ either expressed or implied, of David Wolever. """ import re -import sys import inspect import warnings from functools import wraps diff --git a/numpy/testing/tests/test_utils.py b/numpy/testing/tests/test_utils.py index 913c67fc6..b899e94f4 100644 --- a/numpy/testing/tests/test_utils.py +++ b/numpy/testing/tests/test_utils.py @@ -2,7 +2,6 @@ import warnings import sys import os import itertools -import textwrap import pytest import weakref |
