Browse Source

[fix] pep8

a01200356 9 years ago
parent
commit
30bfbf2e07
1 changed files with 2 additions and 2 deletions
  1. 2 2
      searx/engines/wolframalpha_noapi.py

+ 2 - 2
searx/engines/wolframalpha_noapi.py

@@ -16,7 +16,7 @@ import HTMLParser
 
 # search-url
 url = 'http://www.wolframalpha.com/'
-search_url = url+'input/?{query}'
+search_url = url + 'input/?{query}'
 
 # xpath variables
 scripts_xpath = '//script'
@@ -61,7 +61,7 @@ def response(resp):
 
     if line:
         # extract answer from json
-        answer = line[line.find('{'):line.rfind('}')+1]
+        answer = line[line.find('{'):line.rfind('}') + 1]
         try:
             answer = loads(answer)
         except Exception: