From f7027049b1cc02797ee063ef63c6b353a1ce31ca Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Mon, 19 Feb 2018 22:39:14 +0900 Subject: Fix flake8 violations --- tests/test_websupport.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tests/test_websupport.py') diff --git a/tests/test_websupport.py b/tests/test_websupport.py index 10942798c..bf12cbade 100644 --- a/tests/test_websupport.py +++ b/tests/test_websupport.py @@ -9,6 +9,8 @@ :license: BSD, see LICENSE for details. """ +import pytest + from sphinx.websupport import WebSupport try: sqlalchemy_missing = False @@ -16,8 +18,6 @@ try: except ImportError: sqlalchemy_missing = True -import pytest - @pytest.mark.skipif(sqlalchemy_missing, reason='needs sqlalchemy') def test_build(request, rootdir, sphinx_test_tempdir): -- cgit v1.2.1