diff options
| author | Markus Heiser <markus.heiser@darmarit.de> | 2022-08-01 16:42:33 +0200 |
|---|---|---|
| committer | Markus Heiser <markus.heiser@darmarit.de> | 2022-08-01 16:42:33 +0200 |
| commit | a2badb4fe47eaa6df26b7bc0ef601cb9179edc3a (patch) | |
| tree | 92e576547a2844c765222afb30236a4f28bcc459 /searx/search/processors/online_currency.py | |
| parent | 1fbb514a4ead209c95b4ddca0430f754a4c11554 (diff) | |
[doc] add description of method EngineProcessor.get_params()
Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
Diffstat (limited to 'searx/search/processors/online_currency.py')
| -rw-r--r-- | searx/search/processors/online_currency.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/searx/search/processors/online_currency.py b/searx/search/processors/online_currency.py index 6bd891b1d..92398239f 100644 --- a/searx/search/processors/online_currency.py +++ b/searx/search/processors/online_currency.py @@ -38,6 +38,9 @@ class OnlineCurrencyProcessor(OnlineProcessor): engine_type = 'online_currency' def get_params(self, search_query, engine_category): + """Returns a set of *request params* or ``None`` if search query does not match + to :py:obj:`parser_re`.""" + params = super().get_params(search_query, engine_category) if params is None: return None |