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_js.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_js.py')
-rw-r--r-- | tests/test_domain_js.py | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/tests/test_domain_js.py b/tests/test_domain_js.py index 9d0b59b91..58c54c766 100644 --- a/tests/test_domain_js.py +++ b/tests/test_domain_js.py @@ -14,10 +14,8 @@ import pytest from docutils import nodes from sphinx import addnodes -from sphinx.addnodes import ( - desc, desc_annotation, desc_content, desc_name, - desc_parameter, desc_parameterlist, desc_signature -) +from sphinx.addnodes import (desc, desc_annotation, desc_content, desc_name, desc_parameter, + desc_parameterlist, desc_signature) from sphinx.domains.javascript import JavaScriptDomain from sphinx.testing import restructuredtext from sphinx.testing.util import assert_node |