diff options
| author | Markus Heiser <markus.heiser@darmarIT.de> | 2021-09-10 09:20:26 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-09-10 09:20:26 +0000 |
| commit | b671e0364fbfb09701fb675ba23a7d7bebbcf744 (patch) | |
| tree | 5cc14908449328de044464fbccb4950d08632a99 /searx/search/models.py | |
| parent | 449ff708985b86c85a4badc8494a577c792c4dd7 (diff) | |
| parent | 0b27c8698f7b5bbca5083cf234fabbc7d7308349 (diff) | |
Merge pull request #302 from dalf/mod_plugin_on_result
[mod] plugin: call on_result for each result of each engines.
Diffstat (limited to 'searx/search/models.py')
| -rw-r--r-- | searx/search/models.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/searx/search/models.py b/searx/search/models.py index 7233fac42..e48cb3611 100644 --- a/searx/search/models.py +++ b/searx/search/models.py @@ -4,6 +4,7 @@ import typing class EngineRef: + """Reference by names to an engine and category""" __slots__ = 'name', 'category' |