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 /doc/source/conf.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 'doc/source/conf.py')
-rw-r--r-- | doc/source/conf.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/doc/source/conf.py b/doc/source/conf.py index 957cb17e6..11be7ec1c 100644 --- a/doc/source/conf.py +++ b/doc/source/conf.py @@ -1,5 +1,7 @@ # -*- coding: utf-8 -*- -import sys, os, re +import os +import re +import sys # Minimum version, enforced by sphinx needs_sphinx = '2.2.0' |