summaryrefslogtreecommitdiff
path: root/searx/tests/test_webapp.py
diff options
context:
space:
mode:
authorGabor Nagy <mail@aigeruth.hu>2014-02-05 20:24:31 +0100
committerGabor Nagy <mail@aigeruth.hu>2014-02-05 20:24:31 +0100
commit22fd0746d94ec9285561b4da9a59939931a6c088 (patch)
treec7a2b84de48cd068343f0b7986055c7f7981e31e /searx/tests/test_webapp.py
parentb22dd51bd7fc7234a40b664964a6210cbe7bf455 (diff)
Improves PEP8 compatibility.
Diffstat (limited to 'searx/tests/test_webapp.py')
-rw-r--r--searx/tests/test_webapp.py6
1 files changed, 2 insertions, 4 deletions
diff --git a/searx/tests/test_webapp.py b/searx/tests/test_webapp.py
index 82d4a9088..4e2c820d9 100644
--- a/searx/tests/test_webapp.py
+++ b/searx/tests/test_webapp.py
@@ -1,12 +1,10 @@
# -*- coding: utf-8 -*-
+import json
+from urlparse import ParseResult
from mock import patch
from searx import webapp
from searx.testing import SearxTestCase
-from urlparse import ParseResult
-
-
-import json
class ViewsTestCase(SearxTestCase):