diff options
Diffstat (limited to 'searx/engines/wordnik.py')
-rw-r--r-- | searx/engines/wordnik.py | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/searx/engines/wordnik.py b/searx/engines/wordnik.py index 21eaeccc3..9b048a068 100644 --- a/searx/engines/wordnik.py +++ b/searx/engines/wordnik.py @@ -20,13 +20,9 @@ about = { categories = ['general'] paging = False -URL = 'https://www.wordnik.com' -SEARCH_URL = URL + '/words/{query}' - def request(query, params): - params['url'] = SEARCH_URL.format(query=query) - logger.debug(f"query_url --> {params['url']}") + params['url'] = f"https://www.wordnik.com/words/{query}" return params |