From d2f1d7704c5f55fc39cd040acf4a07ddce88319b Mon Sep 17 00:00:00 2001 From: Mike Taves Date: Tue, 28 Jan 2020 13:46:25 +1300 Subject: 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 --- numpy/distutils/command/config.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'numpy/distutils/command') 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 -- cgit v1.2.1