summaryrefslogtreecommitdiff
path: root/searx/engines
diff options
context:
space:
mode:
authorstepshal <nessento@openmailbox.org>2016-07-16 00:49:23 +0700
committerstepshal <nessento@openmailbox.org>2016-08-11 17:18:12 +0700
commit7e16c9d3602eb7e545c3452a6778c31d59e5c56d (patch)
treeed6dd5ac05ee67f01b0315de109aea23ce569df7 /searx/engines
parent27f4373124bcd80f975b85079eac871b97b56b15 (diff)
downloadsearxng-7e16c9d3602eb7e545c3452a6778c31d59e5c56d.tar.gz
searxng-7e16c9d3602eb7e545c3452a6778c31d59e5c56d.zip
Add missing blank lines after class or function definition.
Diffstat (limited to 'searx/engines')
-rw-r--r--searx/engines/archlinux.py2
-rw-r--r--searx/engines/soundcloud.py1
2 files changed, 3 insertions, 0 deletions
diff --git a/searx/engines/archlinux.py b/searx/engines/archlinux.py
index 84e0d0fba..b846934f7 100644
--- a/searx/engines/archlinux.py
+++ b/searx/engines/archlinux.py
@@ -34,6 +34,7 @@ def locale_to_lang_code(locale):
locale = locale.split('_')[0]
return locale
+
# wikis for some languages were moved off from the main site, we need to make
# requests to correct URLs to be able to get results in those languages
lang_urls = {
@@ -70,6 +71,7 @@ def get_lang_urls(language):
return lang_urls[language]
return lang_urls['all']
+
# Language names to build search requests for
# those languages which are hosted on the main site.
main_langs = {
diff --git a/searx/engines/soundcloud.py b/searx/engines/soundcloud.py
index ac23c1e83..62b03ac03 100644
--- a/searx/engines/soundcloud.py
+++ b/searx/engines/soundcloud.py
@@ -57,6 +57,7 @@ def get_client_id():
logger.warning("Unable to fetch guest client_id from SoundCloud, check parser!")
return ""
+
# api-key
guest_client_id = get_client_id()