diff options
| author | Mike Taves <mwtoews@gmail.com> | 2020-01-28 13:46:25 +1300 |
|---|---|---|
| committer | Mike Taves <mwtoews@gmail.com> | 2020-01-28 13:46:25 +1300 |
| commit | d2f1d7704c5f55fc39cd040acf4a07ddce88319b (patch) | |
| tree | 455248691e966ba665ac53bddf2fa4f2a689e538 /numpy/distutils/command | |
| parent | f398a0df8a2105b2fdeaeab54505451169b0a869 (diff) | |
| download | numpy-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/distutils/command')
| -rw-r--r-- | numpy/distutils/command/config.py | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/numpy/distutils/command/config.py b/numpy/distutils/command/config.py index 2c833aad7..e54a54449 100644 --- a/numpy/distutils/command/config.py +++ b/numpy/distutils/command/config.py @@ -2,11 +2,12 @@ # try_compile call. try_run works but is untested for most of Fortran # compilers (they must define linker_exe first). # Pearu Peterson -import os, signal -import warnings -import sys +import os +import signal import subprocess +import sys import textwrap +import warnings from distutils.command.config import config as old_config from distutils.command.config import LANG_EXT |
