summaryrefslogtreecommitdiff
path: root/searx/search
diff options
context:
space:
mode:
authorMarkus Heiser <markus.heiser@darmarit.de>2022-06-03 15:41:52 +0200
committerMarkus Heiser <markus.heiser@darmarit.de>2022-06-03 15:41:52 +0200
commit2de007138ca1820e865c574cc13429d5da3f019f (patch)
treee51c29aeebc52cd0c2cb3daa45fbfacf396cd778 /searx/search
parent658e04077b2f647156965610461755682d7cd399 (diff)
downloadsearxng-2de007138ca1820e865c574cc13429d5da3f019f.tar.gz
searxng-2de007138ca1820e865c574cc13429d5da3f019f.zip
[fix] prepare for pylint 2.14.0
Remove issue reported by Pylint 2.14.0: - no-self-use: has been moved to optional extension [1] - The refactoring checker now also raises 'consider-using-generator' messages for max(), min() and sum(). [2] .pylintrc: - <option name>-hint has been removed since long, Pylint 2.14.0 raises an error on invalid options - bad-continuation and bad-whitespace have been removed [3] [1] https://pylint.pycqa.org/en/latest/whatsnew/2/2.14/summary.html#removed-checkers [2] https://pylint.pycqa.org/en/latest/whatsnew/2/2.14/full.html#what-s-new-in-pylint-2-14-0 [2] https://pylint.pycqa.org/en/latest/whatsnew/2/2.6/summary.html#summary-release-highlights Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
Diffstat (limited to 'searx/search')
-rw-r--r--searx/search/__init__.py2
-rw-r--r--searx/search/processors/abstract.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/searx/search/__init__.py b/searx/search/__init__.py
index e790bd05e..c517814de 100644
--- a/searx/search/__init__.py
+++ b/searx/search/__init__.py
@@ -133,7 +133,7 @@ class Search:
def search_multiple_requests(self, requests):
# pylint: disable=protected-access
- search_id = uuid4().__str__()
+ search_id = str(uuid4())
for engine_name, query, request_params in requests:
th = threading.Thread( # pylint: disable=invalid-name
diff --git a/searx/search/processors/abstract.py b/searx/search/processors/abstract.py
index b7703496b..d4822fc56 100644
--- a/searx/search/processors/abstract.py
+++ b/searx/search/processors/abstract.py
@@ -170,5 +170,5 @@ class EngineProcessor(ABC):
tests.update(self.get_default_tests())
return tests
- def get_default_tests(self): # pylint: disable=no-self-use
+ def get_default_tests(self):
return {}