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/doku.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/doku.py')
| -rw-r--r-- | searx/engines/doku.py | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/searx/engines/doku.py b/searx/engines/doku.py index e81131cce..08f56bbe7 100644 --- a/searx/engines/doku.py +++ b/searx/engines/doku.py @@ -25,9 +25,14 @@ number_of_results = 5 # search-url # Doku is OpenSearch compatible base_url = 'http://localhost:8090' -search_url = '/?do=search' '&{query}' -# TODO '&startRecord={offset}'\ -# TODO '&maximumRecords={limit}'\ +search_url = ( + # fmt: off + '/?do=search' + '&{query}' + # fmt: on +) +# TODO '&startRecord={offset}' +# TODO '&maximumRecords={limit}' # do search-request |