diff options
author | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2018-02-19 22:39:14 +0900 |
---|---|---|
committer | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2018-02-19 23:20:56 +0900 |
commit | f7027049b1cc02797ee063ef63c6b353a1ce31ca (patch) | |
tree | 4bf98a1ea0f84873593f638c84c27cfcdcd961e1 /tests/test_application.py | |
parent | bce5fe76b5c846d95014bf795b550dd5d1a655f3 (diff) | |
download | sphinx-git-f7027049b1cc02797ee063ef63c6b353a1ce31ca.tar.gz |
Fix flake8 violations
Diffstat (limited to 'tests/test_application.py')
-rw-r--r-- | tests/test_application.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/tests/test_application.py b/tests/test_application.py index c4c2e579b..075acc80c 100644 --- a/tests/test_application.py +++ b/tests/test_application.py @@ -8,14 +8,13 @@ :copyright: Copyright 2007-2018 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ +import pytest from docutils import nodes from sphinx.application import ExtensionError from sphinx.domains import Domain -from sphinx.util import logging - from sphinx.testing.util import strip_escseq -import pytest +from sphinx.util import logging def test_events(app, status, warning): |