diff options
| author | Alexandre Flament <alex@al-f.net> | 2020-10-04 09:06:20 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-10-04 09:06:20 +0200 |
| commit | b728cb610b92161609b1c40babff25749720fc25 (patch) | |
| tree | 733b665dd897cc8e4cd7e37f7d64a052c260d6f0 /searx/engines/google_images.py | |
| parent | e2cd9b65bb2b2e1f1085cf48442632da0d52077e (diff) | |
| parent | 8f914a28facec314a2b98b11d3cc1207eb8ee8ab (diff) | |
Merge pull request #2241 from dalf/move-extract-text-and-url
Move the extract_text and extract_url functions to searx.utils
Diffstat (limited to 'searx/engines/google_images.py')
| -rw-r--r-- | searx/engines/google_images.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/searx/engines/google_images.py b/searx/engines/google_images.py index 9dd5fad2c..8cfb1e17f 100644 --- a/searx/engines/google_images.py +++ b/searx/engines/google_images.py @@ -28,8 +28,7 @@ from urllib.parse import urlencode, urlparse, unquote from lxml import html from flask_babel import gettext from searx import logger -from searx.utils import eval_xpath -from searx.engines.xpath import extract_text +from searx.utils import extract_text, eval_xpath # pylint: disable=unused-import from searx.engines.google import ( |