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/locales.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/locales.py')
-rw-r--r-- | searx/locales.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/searx/locales.py b/searx/locales.py index 80defceb7..42d5854c2 100644 --- a/searx/locales.py +++ b/searx/locales.py @@ -57,7 +57,7 @@ def initialize_locales(directory): """Initialize global names :py:obj:`LOCALE_NAMES`, :py:obj:`UI_LOCALE_CODES` and :py:obj:`RTL_LOCALES`. """ - global LOCALE_NAMES, UI_LOCALE_CODES, RTL_LOCALES # pylint: disable=global-statement + global UI_LOCALE_CODES # pylint: disable=global-statement for dirname in sorted(os.listdir(directory)): # Based on https://flask-babel.tkte.ch/_modules/flask_babel.html#Babel.list_translations if not os.path.isdir( os.path.join(directory, dirname, 'LC_MESSAGES') ): |