diff options
author | Markus Heiser <markus.heiser@darmarit.de> | 2021-09-17 10:14:27 +0200 |
---|---|---|
committer | Markus Heiser <markus.heiser@darmarit.de> | 2021-09-17 10:14:27 +0200 |
commit | 443bf35e09ce27d07c18c01d455886e85ead53f9 (patch) | |
tree | 1c8b9fbc638f0e0317deac0d76347b275abd78e3 /searx/external_bang.py | |
parent | fe6470cbe6f5072cbfa2adc6c08790ed49510bde (diff) | |
download | searxng-443bf35e09ce27d07c18c01d455886e85ead53f9.tar.gz searxng-443bf35e09ce27d07c18c01d455886e85ead53f9.zip |
[pylint] fix global-variable-not-assigned issues
If there is no write access, there is no need for global. Remove global
statement if there is no assignment.
global-variable-not-assigned:
Using global for names but no assignment is done Used when a variable is
defined through the "global" statement but no assignment to this variable is
done.
In Pylint 2.11 the global-variable-not-assigned checker now catches global
variables that are never reassigned in a local scope and catches (reassigned)
functions [1][2]
[1] https://pylint.pycqa.org/en/latest/whatsnew/2.11.html
[2] https://github.com/PyCQA/pylint/issues/1375
Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
Diffstat (limited to 'searx/external_bang.py')
-rw-r--r-- | searx/external_bang.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/searx/external_bang.py b/searx/external_bang.py index 8798a0a65..f8e872693 100644 --- a/searx/external_bang.py +++ b/searx/external_bang.py @@ -45,7 +45,6 @@ def resolve_bang_definition(bang_definition, query): def get_bang_definition_and_autocomplete(bang, external_bangs_db=None): - global EXTERNAL_BANGS if external_bangs_db is None: external_bangs_db = EXTERNAL_BANGS @@ -78,7 +77,6 @@ def get_bang_url(search_query, external_bangs_db=None): :param search_query: This is a search_query object which contains preferences and the submitted queries. :return: None if the bang was invalid, else a string of the redirect url. """ - global EXTERNAL_BANGS if external_bangs_db is None: external_bangs_db = EXTERNAL_BANGS |