diff options
Diffstat (limited to 'searx/answerers')
| -rw-r--r-- | searx/answerers/_core.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/searx/answerers/_core.py b/searx/answerers/_core.py index f4b1e00eb..6c1c2073b 100644 --- a/searx/answerers/_core.py +++ b/searx/answerers/_core.py @@ -85,7 +85,7 @@ class ModuleAnswerer(Answerer): return AnswererInfo(**kwargs) -class AnswerStorage(dict): +class AnswerStorage(dict): # type: ignore """A storage for managing the *answerers* of SearXNG. With the :py:obj:`AnswerStorage.ask`” method, a caller can ask questions to all *answerers* and receives a list of the results.""" |