Browse Source

[fix] pep8

Adam Tauber 11 years ago
parent
commit
3acdf3f9a1
1 changed files with 2 additions and 0 deletions
  1. 2 0
      searx/engines/yahoo.py

+ 2 - 0
searx/engines/yahoo.py

@@ -15,11 +15,13 @@ suggestion_xpath = '//div[@id="satat"]//a'
 
 paging = True
 
+
 def parse_url(url_string):
     start = url_string.find('http', url_string.find('/RU=')+1)
     end = min(url_string.rfind('/RS'), url_string.rfind('/RK'))
     return unquote(url_string[start:end])
 
+
 def request(query, params):
     offset = (params['pageno'] - 1) * 10 + 1
     if params['language'] == 'all':