summaryrefslogtreecommitdiff
path: root/searx/engines/google.py
diff options
context:
space:
mode:
Diffstat (limited to 'searx/engines/google.py')
-rw-r--r--searx/engines/google.py6
1 files changed, 0 insertions, 6 deletions
diff --git a/searx/engines/google.py b/searx/engines/google.py
index e1caabb12..4e6fa6190 100644
--- a/searx/engines/google.py
+++ b/searx/engines/google.py
@@ -25,16 +25,11 @@ The google WEB engine itself has a special setup option:
"""
-# pylint: disable=invalid-name, missing-function-docstring
-
from urllib.parse import urlencode
from lxml import html
-from searx import logger
from searx.utils import match_language, extract_text, eval_xpath, eval_xpath_list, eval_xpath_getindex
from searx.exceptions import SearxEngineCaptchaException
-logger = logger.getChild('google engine')
-
# about
about = {
"website": 'https://www.google.com',
@@ -280,7 +275,6 @@ def request(query, params):
offset = (params['pageno'] - 1) * 10
lang_info = get_lang_info(
- # pylint: disable=undefined-variable
params, supported_languages, language_aliases, True
)