summaryrefslogtreecommitdiff
path: root/searx/search/processors
diff options
context:
space:
mode:
authorMarkus Heiser <markus.heiser@darmarIT.de>2022-06-03 16:17:36 +0200
committerGitHub <noreply@github.com>2022-06-03 16:17:36 +0200
commitac6c6670411aacc23daad212f41ce656bebe0f2a (patch)
treee51c29aeebc52cd0c2cb3daa45fbfacf396cd778 /searx/search/processors
parenta408dd37e762d30157f4c224f638b450f132ff1f (diff)
parent2de007138ca1820e865c574cc13429d5da3f019f (diff)
Merge pull request #1280 from searxng/dependabot/pip/master/pylint-2.14.0
Bump pylint from 2.13.9 to 2.14.0
Diffstat (limited to 'searx/search/processors')
-rw-r--r--searx/search/processors/abstract.py2
1 files changed, 1 insertions, 1 deletions
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 {}