diff options
| author | Alexandre Flament <alex@al-f.net> | 2021-01-18 08:29:25 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-01-18 08:29:25 +0100 |
| commit | 0495e15df4b5e88adef24a9b5c3dbb35e4fac072 (patch) | |
| tree | 0199011d65c8783ad4b78abd2770290708ef6751 /searx/search/processors | |
| parent | 80d7411f2cf72b0ba7b72afe85a6703db5ec3525 (diff) | |
| parent | 67a1aab0d5b8ab93b60be5da2390039f6c861505 (diff) | |
Merge pull request #2476 from dalf/fix-error-recording-and-checker
Fix error recording and checker
Diffstat (limited to 'searx/search/processors')
| -rw-r--r-- | searx/search/processors/abstract.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/searx/search/processors/abstract.py b/searx/search/processors/abstract.py index eb8d296ec..3a853d49e 100644 --- a/searx/search/processors/abstract.py +++ b/searx/search/processors/abstract.py @@ -1,13 +1,13 @@ # SPDX-License-Identifier: AGPL-3.0-or-later -from abc import abstractmethod +from abc import abstractmethod, ABC from searx import logger logger = logger.getChild('searx.search.processor') -class EngineProcessor: +class EngineProcessor(ABC): def __init__(self, engine, engine_name): self.engine = engine |