diff options
Diffstat (limited to 'searx/engines/etools.py')
| -rw-r--r-- | searx/engines/etools.py | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/searx/engines/etools.py b/searx/engines/etools.py index c66ceeb4b..347463291 100644 --- a/searx/engines/etools.py +++ b/searx/engines/etools.py @@ -22,7 +22,14 @@ paging = False safesearch = True base_url = 'https://www.etools.ch' -search_path = '/searchAdvancedSubmit.do' '?query={search_term}' '&pageResults=20' '&safeSearch={safesearch}' +search_path = ( + # fmt: off + '/searchAdvancedSubmit.do' + '?query={search_term}' + '&pageResults=20' + '&safeSearch={safesearch}' + # fmt: on +) def request(query, params): |