summaryrefslogtreecommitdiff
path: root/searx/search/checker/__init__.py
diff options
context:
space:
mode:
authorAlexandre Flament <alex@al-f.net>2022-11-05 17:50:40 +0100
committerGitHub <noreply@github.com>2022-11-05 17:50:40 +0100
commitd37afb8ab90f75f888179b6efd3e1e8977ef6dea (patch)
tree181d2b38112d9439f836e6d9a286f5355a311ffa /searx/search/checker/__init__.py
parentd764d94a70b0b10291105a867227975d59af5675 (diff)
parente92755d358df5b34b0181f48f8ba02c7f2939e8f (diff)
Merge pull request #1856 from dalf/checker_requires_redis
The checker requires Redis
Diffstat (limited to 'searx/search/checker/__init__.py')
-rw-r--r--searx/search/checker/__init__.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/searx/search/checker/__init__.py b/searx/search/checker/__init__.py
index 85b9178df..7d779a282 100644
--- a/searx/search/checker/__init__.py
+++ b/searx/search/checker/__init__.py
@@ -2,3 +2,5 @@
from .impl import Checker
from .background import initialize, get_result
+
+__all__ = ('Checker', 'initialize', 'get_result')