diff options
author | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2020-11-12 02:05:13 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-12 02:05:13 +0900 |
commit | 68cc0f7e94f360a2c62ebcb761f8096e04ebf07f (patch) | |
tree | 37b1da3654ece6803efd0a2ed356fbbff3fc276a /sphinx/writers/html5.py | |
parent | 229e11c488fc1fbd15b0a209782aa94dc6abdf58 (diff) | |
parent | 0949735210abaa05b6448e531984f159403053f4 (diff) | |
download | sphinx-git-68cc0f7e94f360a2c62ebcb761f8096e04ebf07f.tar.gz |
Merge pull request #8408 from francoisfreitag/isort
Sort imports with isort
Diffstat (limited to 'sphinx/writers/html5.py')
-rw-r--r-- | sphinx/writers/html5.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/sphinx/writers/html5.py b/sphinx/writers/html5.py index 4ceeaafdf..7824f54f5 100644 --- a/sphinx/writers/html5.py +++ b/sphinx/writers/html5.py @@ -12,8 +12,7 @@ import os import posixpath import re import warnings -from typing import Any, Iterable, Tuple -from typing import cast +from typing import Any, Iterable, Tuple, cast from docutils import nodes from docutils.nodes import Element, Node, Text @@ -22,7 +21,7 @@ from docutils.writers.html5_polyglot import HTMLTranslator as BaseTranslator from sphinx import addnodes from sphinx.builders import Builder from sphinx.deprecation import RemovedInSphinx40Warning -from sphinx.locale import admonitionlabels, _, __ +from sphinx.locale import _, __, admonitionlabels from sphinx.util import logging from sphinx.util.docutils import SphinxTranslator from sphinx.util.images import get_image_size |