diff options
| author | Markus Heiser <markus.heiser@darmarit.de> | 2021-12-27 10:16:20 +0100 |
|---|---|---|
| committer | Markus Heiser <markus.heiser@darmarit.de> | 2021-12-27 10:16:20 +0100 |
| commit | d84226bf63757b1d4245ab26e9c081daf42389aa (patch) | |
| tree | 9c0456ad1a1d9d375311ccd8c9bd3eafd0779114 /searx/engines/etools.py | |
| parent | 3d96a9839a12649874b6d4cf9466bd3616b0a03c (diff) | |
[fix] issues reported by pylint
Fix pylint issues from commit (3d96a983)
[format.python] initial formatting of the python code
Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
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): |