diff options
| author | Bnyro <bnyro@tutanota.com> | 2025-01-25 12:02:10 +0100 |
|---|---|---|
| committer | Markus Heiser <markus.heiser@darmarIT.de> | 2025-01-25 12:12:46 +0100 |
| commit | 176079977d9c12edcc4ded6fd7cd9092d9c75327 (patch) | |
| tree | 1209126a4223b11597ef5c681ddb80b0292630b0 /searx/autocomplete.py | |
| parent | f3f13519ff8bad181ddb1e749a3e57dfd92f003c (diff) | |
[chore] autocomplete.py: order autocompletion engines alphabetically
Diffstat (limited to 'searx/autocomplete.py')
| -rw-r--r-- | searx/autocomplete.py | 4 |
1 files 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, } |