Browse Source

Make wolframalpha_noapi.py flake8 compliant

a01200356 9 years ago
parent
commit
5ed8f4da80
1 changed files with 4 additions and 4 deletions
  1. 4 4
      searx/engines/wolframalpha_noapi.py

+ 4 - 4
searx/engines/wolframalpha_noapi.py

@@ -3,7 +3,7 @@
 # @website     http://www.wolframalpha.com/
 # @website     http://www.wolframalpha.com/
 #
 #
 # @using-api   no
 # @using-api   no
-# @results     HTML, JS
+# @results     HTML
 # @stable      no
 # @stable      no
 # @parse       answer
 # @parse       answer
 
 
@@ -26,7 +26,7 @@ def request(query, params):
 # get response from search-request
 # get response from search-request
 def response(resp):
 def response(resp):
     results = []
     results = []
-    
+
     # the answer is inside a js function
     # the answer is inside a js function
     # answer can be located in different 'pods', although by default it should be in pod_0200
     # answer can be located in different 'pods', although by default it should be in pod_0200
     possible_locations = ['pod_0200\.push(.*)\n',
     possible_locations = ['pod_0200\.push(.*)\n',
@@ -44,10 +44,10 @@ def response(resp):
         return results
         return results
 
 
     # extract answer from json
     # extract answer from json
-    answer = line[line.find('{') : line.rfind('}')+1]
+    answer = line[line.find('{'):line.rfind('}')+1]
     answer = json.loads(answer.encode('unicode-escape'))
     answer = json.loads(answer.encode('unicode-escape'))
     answer = answer['stringified'].decode('unicode-escape')
     answer = answer['stringified'].decode('unicode-escape')
 
 
     results.append({'answer': answer})
     results.append({'answer': answer})
-    
+
     return results
     return results