diff options
author | Warren Weckesser <warren.weckesser@gmail.com> | 2020-01-01 07:50:29 -0500 |
---|---|---|
committer | Warren Weckesser <warren.weckesser@gmail.com> | 2020-01-01 07:50:29 -0500 |
commit | d690452646711f9091c73de471463e795d12acfc (patch) | |
tree | 7904b04ebf1e9fb0b91a90af4762e6f506f19014 /numpy/lib/tests/test_recfunctions.py | |
parent | baa3786ef02cb8d56ed1c16a105b857e87adf29a (diff) | |
download | numpy-d690452646711f9091c73de471463e795d12acfc.tar.gz |
MAINT: lib: Clean up in tests.
* Remove a few unused imports in several files.
Diffstat (limited to 'numpy/lib/tests/test_recfunctions.py')
-rw-r--r-- | numpy/lib/tests/test_recfunctions.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/numpy/lib/tests/test_recfunctions.py b/numpy/lib/tests/test_recfunctions.py index fa5f4dec2..53229e31a 100644 --- a/numpy/lib/tests/test_recfunctions.py +++ b/numpy/lib/tests/test_recfunctions.py @@ -772,7 +772,6 @@ class TestJoinBy(object): def test_join_subdtype(self): # tests the bug in https://stackoverflow.com/q/44769632/102441 - from numpy.lib import recfunctions as rfn foo = np.array([(1,)], dtype=[('key', int)]) bar = np.array([(1, np.array([1,2,3]))], |