summaryrefslogtreecommitdiff
path: root/numpy/random/tests/test_extending.py
diff options
context:
space:
mode:
authorMike Taves <mwtoews@gmail.com>2020-01-28 13:46:25 +1300
committerMike Taves <mwtoews@gmail.com>2020-01-28 13:46:25 +1300
commitd2f1d7704c5f55fc39cd040acf4a07ddce88319b (patch)
tree455248691e966ba665ac53bddf2fa4f2a689e538 /numpy/random/tests/test_extending.py
parentf398a0df8a2105b2fdeaeab54505451169b0a869 (diff)
downloadnumpy-d2f1d7704c5f55fc39cd040acf4a07ddce88319b.tar.gz
STY,MAINT: avoid 'multiple imports on one line' (flake8 E401)
* PEP 8: "Imports should usually be on separate lines" * Where modified, sort imported modules alphabetically * Clean-up unused imports from these expanded lines
Diffstat (limited to 'numpy/random/tests/test_extending.py')
-rw-r--r--numpy/random/tests/test_extending.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/numpy/random/tests/test_extending.py b/numpy/random/tests/test_extending.py
index 23a874fb1..b0d4c60fe 100644
--- a/numpy/random/tests/test_extending.py
+++ b/numpy/random/tests/test_extending.py
@@ -1,8 +1,9 @@
-import os, sys
+import os
import pytest
-import warnings
import shutil
import subprocess
+import sys
+import warnings
try:
import cffi