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/doc/constants.py | |
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/doc/constants.py')
-rw-r--r-- | numpy/doc/constants.py | 3 |
1 files changed, 2 insertions, 1 deletions
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 = [] |