From 8f8343dc0d78bb57215afc3e99fd9000fce6e0cf Mon Sep 17 00:00:00 2001 From: Markus Heiser Date: Thu, 11 Sep 2025 19:10:27 +0200 Subject: [mod] addition of various type hints / engine processors Continuation of #5147 .. typification of the engine processors. BTW: - removed obsolete engine property https_support - fixed & improved currency_convert - engine instances can now implement a engine.setup method [#5147] https://github.com/searxng/searxng/pull/5147 Signed-off-by: Markus Heiser --- tests/unit/test_webapp.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tests/unit/test_webapp.py') diff --git a/tests/unit/test_webapp.py b/tests/unit/test_webapp.py index 91c6309fc..e66f46a9c 100644 --- a/tests/unit/test_webapp.py +++ b/tests/unit/test_webapp.py @@ -24,7 +24,7 @@ class ViewsTestCase(SearxTestCase): # pylint: disable=too-many-public-methods def dummy(*args, **kwargs): # pylint: disable=unused-argument pass - self.setattr4test(searx.search.processors, 'initialize_processor', dummy) + self.setattr4test(searx.search.processors.PROCESSORS, 'init', dummy) # set some defaults test_results = [ -- cgit v1.2.3