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 /tests/test_util.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 'tests/test_util.py')
-rw-r--r-- | tests/test_util.py | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/tests/test_util.py b/tests/test_util.py index 434d96d3a..c58931bb4 100644 --- a/tests/test_util.py +++ b/tests/test_util.py @@ -17,11 +17,9 @@ import pytest import sphinx from sphinx.errors import ExtensionError, PycodeError from sphinx.testing.util import strip_escseq -from sphinx.util import ( - SkipProgressMessage, display_chunk, encode_uri, ensuredir, - import_object, parselinenos, progress_message, status_iterator, xmlname_checker -) -from sphinx.util import logging +from sphinx.util import (SkipProgressMessage, display_chunk, encode_uri, ensuredir, + import_object, logging, parselinenos, progress_message, + status_iterator, xmlname_checker) def test_encode_uri(): |