diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2020-01-23 13:25:09 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-01-23 13:25:09 -0700 |
commit | 36a2bf0ce8b072d557af5b58a9003a6bc72caaef (patch) | |
tree | dea44e19f7bbbeda64a219506fdcf8088e449ea6 /numpy/lib/tests/test__datasource.py | |
parent | 04ac2a13b302a7af6fe2a5ca67e09a0e09a0f8e7 (diff) | |
parent | 021163b5e2293286b26d22bdae51305da634e74d (diff) | |
download | numpy-36a2bf0ce8b072d557af5b58a9003a6bc72caaef.tar.gz |
Merge pull request #15403 from WarrenWeckesser/flakes
MAINT: Clean up, mostly unused imports.
Diffstat (limited to 'numpy/lib/tests/test__datasource.py')
-rw-r--r-- | numpy/lib/tests/test__datasource.py | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/numpy/lib/tests/test__datasource.py b/numpy/lib/tests/test__datasource.py index d3bd88d7f..1ed7815d9 100644 --- a/numpy/lib/tests/test__datasource.py +++ b/numpy/lib/tests/test__datasource.py @@ -1,13 +1,10 @@ import os -import sys import pytest from tempfile import mkdtemp, mkstemp, NamedTemporaryFile from shutil import rmtree import numpy.lib._datasource as datasource -from numpy.testing import ( - assert_, assert_equal, assert_raises, assert_warns - ) +from numpy.testing import assert_, assert_equal, assert_raises import urllib.request as urllib_request from urllib.parse import urlparse |