From 176079977d9c12edcc4ded6fd7cd9092d9c75327 Mon Sep 17 00:00:00 2001 From: Bnyro Date: Sat, 25 Jan 2025 12:02:10 +0100 Subject: [PATCH] [chore] autocomplete.py: order autocompletion engines alphabetically --- searx/autocomplete.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/searx/autocomplete.py b/searx/autocomplete.py index 206589c67..32a2bf188 100644 --- a/searx/autocomplete.py +++ b/searx/autocomplete.py @@ -254,17 +254,17 @@ def yandex(query, _lang): backends = { 'baidu': baidu, + 'brave': brave, 'dbpedia': dbpedia, 'duckduckgo': duckduckgo, 'google': google_complete, 'mwmbl': mwmbl, + 'qwant': qwant, 'seznam': seznam, 'startpage': startpage, 'stract': stract, 'swisscows': swisscows, - 'qwant': qwant, 'wikipedia': wikipedia, - 'brave': brave, 'yandex': yandex, }