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/ma/tests/test_extras.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/ma/tests/test_extras.py')
-rw-r--r-- | numpy/ma/tests/test_extras.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/numpy/ma/tests/test_extras.py b/numpy/ma/tests/test_extras.py index c29bec2bd..5243cf714 100644 --- a/numpy/ma/tests/test_extras.py +++ b/numpy/ma/tests/test_extras.py @@ -14,7 +14,7 @@ import itertools import numpy as np from numpy.testing import ( - assert_warns, suppress_warnings, assert_raises, + assert_warns, suppress_warnings ) from numpy.ma.testutils import ( assert_, assert_array_equal, assert_equal, assert_almost_equal @@ -29,9 +29,8 @@ from numpy.ma.extras import ( ediff1d, apply_over_axes, apply_along_axis, compress_nd, compress_rowcols, mask_rowcols, clump_masked, clump_unmasked, flatnotmasked_contiguous, notmasked_contiguous, notmasked_edges, masked_all, masked_all_like, isin, - diagflat, stack, vstack, hstack + diagflat, stack, vstack ) -import numpy.ma.extras as mae class TestGeneric(object): |