summaryrefslogtreecommitdiff
path: root/sphinx/builders/devhelp.py
diff options
context:
space:
mode:
authorTakeshi KOMIYA <i.tkomiya@gmail.com>2018-01-28 01:52:16 +0900
committerTakeshi KOMIYA <i.tkomiya@gmail.com>2018-01-28 01:52:16 +0900
commit9f5c676322200f0402a32873ba6cac6c6a0ff680 (patch)
tree9989917ae2b81c254a4b649e67c952b47ce8cf2a /sphinx/builders/devhelp.py
parentaf25fa123d2d2cf0ea8073b61120f5205f07deb8 (diff)
downloadsphinx-git-9f5c676322200f0402a32873ba6cac6c6a0ff680.tar.gz
Use flake8-import-order
Diffstat (limited to 'sphinx/builders/devhelp.py')
-rw-r--r--sphinx/builders/devhelp.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/sphinx/builders/devhelp.py b/sphinx/builders/devhelp.py
index c5e9eb6ea..96e06afdc 100644
--- a/sphinx/builders/devhelp.py
+++ b/sphinx/builders/devhelp.py
@@ -12,17 +12,17 @@
"""
from __future__ import absolute_import
-import re
import gzip
+import re
from os import path
from docutils import nodes
from sphinx import addnodes
-from sphinx.util import logging
-from sphinx.util.osutil import make_filename
from sphinx.builders.html import StandaloneHTMLBuilder
from sphinx.environment.adapters.indexentries import IndexEntries
+from sphinx.util import logging
+from sphinx.util.osutil import make_filename
try:
import xml.etree.ElementTree as etree