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/util/logging.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/util/logging.py')
-rw-r--r-- | sphinx/util/logging.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sphinx/util/logging.py b/sphinx/util/logging.py index 5889f3860..0f2a8b6f0 100644 --- a/sphinx/util/logging.py +++ b/sphinx/util/logging.py @@ -12,7 +12,7 @@ import logging import logging.handlers from collections import defaultdict from contextlib import contextmanager -from typing import Any, Dict, Generator, IO, List, Tuple, Union +from typing import IO, Any, Dict, Generator, List, Tuple, Union from docutils import nodes from docutils.nodes import Node @@ -24,6 +24,7 @@ from sphinx.util.console import colorize if False: # For type annotation from typing import Type # for python3.5.1 + from sphinx.application import Sphinx |