summaryrefslogtreecommitdiff
path: root/searx/utils.py
diff options
context:
space:
mode:
authorAlexandre Flament <alex@al-f.net>2020-11-02 11:19:53 +0100
committerAlexandre Flament <alex@al-f.net>2020-11-14 14:11:02 +0100
commit3038052c79ed16d4e32be9680b426b7a765f4f01 (patch)
tree6550ad32ecd9e2f47b5562a5561b39f61c7b8807 /searx/utils.py
parent6489a560ea9cbd8087f9872a8494f6d8ec76bf75 (diff)
[mod] remove unused import
use from searx.engines.duckduckgo import _fetch_supported_languages, supported_languages_url # NOQA so it is possible to easily remove all unused import using autoflake: autoflake --in-place --recursive --remove-all-unused-imports searx tests
Diffstat (limited to 'searx/utils.py')
-rw-r--r--searx/utils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/searx/utils.py b/searx/utils.py
index 9e43c67f..4eed87f2 100644
--- a/searx/utils.py
+++ b/searx/utils.py
@@ -7,7 +7,7 @@ from numbers import Number
from os.path import splitext, join
from random import choice
from html.parser import HTMLParser
-from urllib.parse import urljoin, urlparse, unquote
+from urllib.parse import urljoin, urlparse
from lxml import html
from lxml.etree import XPath, _ElementStringResult, _ElementUnicodeResult