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 --- doc/source/conf.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'doc/source/conf.py') 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' -- cgit v1.2.1