From 375ebd39f0ccc7a00e7514c39308525b7f070f80 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jotag=C3=AA=20Sales?= Date: Wed, 26 Dec 2018 21:28:42 -0200 Subject: [PATCH] fix pep8 errors --- tests/test_helpers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_helpers.py b/tests/test_helpers.py index db1f9b61..37a3c5ab 100644 --- a/tests/test_helpers.py +++ b/tests/test_helpers.py @@ -1,4 +1,5 @@ from sanic import helpers +from sanic.config import Config import pytest @@ -76,7 +77,6 @@ def test_remove_entity_headers(): def test_import_string(): - from sanic.config import Config obj = helpers.import_string('sanic.config.Config') assert isinstance(obj, Config)