From d84226bf63757b1d4245ab26e9c081daf42389aa Mon Sep 17 00:00:00 2001 From: Markus Heiser Date: Mon, 27 Dec 2021 10:16:20 +0100 Subject: [fix] issues reported by pylint Fix pylint issues from commit (3d96a983) [format.python] initial formatting of the python code Signed-off-by: Markus Heiser --- searx/engines/doku.py | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) (limited to 'searx/engines/doku.py') 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 -- cgit v1.2.3