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_domain_std.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_domain_std.py')
-rw-r--r-- | tests/test_domain_std.py | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/tests/test_domain_std.py b/tests/test_domain_std.py index 33a000a3f..92876fa6a 100644 --- a/tests/test_domain_std.py +++ b/tests/test_domain_std.py @@ -8,20 +8,16 @@ :license: BSD, see LICENSE for details. """ -import pytest - from unittest import mock +import pytest from docutils import nodes from docutils.nodes import definition, definition_list, definition_list_item, term - from html5lib import HTMLParser from sphinx import addnodes -from sphinx.addnodes import ( - desc, desc_addname, desc_content, desc_name, desc_signature, glossary, index, - pending_xref -) +from sphinx.addnodes import (desc, desc_addname, desc_content, desc_name, desc_signature, + glossary, index, pending_xref) from sphinx.domains.std import StandardDomain from sphinx.testing import restructuredtext from sphinx.testing.util import assert_node |