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/doc/constants.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'numpy/doc') diff --git a/numpy/doc/constants.py b/numpy/doc/constants.py index 96813b66c..2c629ad33 100644 --- a/numpy/doc/constants.py +++ b/numpy/doc/constants.py @@ -13,7 +13,8 @@ NumPy includes several constants: # # Note: the docstring is autogenerated. # -import textwrap, re +import re +import textwrap # Maintain same format as in numpy.add_newdocs constants = [] -- cgit v1.2.1