summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarkus Heiser <markus.heiser@darmarit.de>2022-04-22 11:16:41 +0200
committerMarkus Heiser <markus.heiser@darmarit.de>2022-04-22 11:16:41 +0200
commitcf644b413e3c143330bd857648ff6811feb5f1d0 (patch)
treeb67ca9d4df1058fbe0b1d961fb60941aeb738a1b
parent5a156a0befe0291c5d513a2483224faa51b2bbd9 (diff)
downloadsearxng-cf644b413e3c143330bd857648ff6811feb5f1d0.tar.gz
searxng-cf644b413e3c143330bd857648ff6811feb5f1d0.zip
[test.pyright] suppress unneeded error & warning messages
Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
-rwxr-xr-xmanage1
-rw-r--r--searx/utils.py2
2 files changed, 2 insertions, 1 deletions
diff --git a/manage b/manage
index 9e5b59fc7..cfba8aea8 100755
--- a/manage
+++ b/manage
@@ -702,6 +702,7 @@ test.pyright() {
pyenv.cmd npx --no-install pyright -p pyrightconfig-ci.json \
| grep -v ".py$" \
| grep -v '/engines/.*.py.* - warning: "logger" is not defined'\
+ | grep -v '/plugins/.*.py.* - error: "logger" is not defined'\
| grep -v '/engines/.*.py.* - warning: "supported_languages" is not defined' \
| grep -v '/engines/.*.py.* - warning: "language_aliases" is not defined'
dump_return $?
diff --git a/searx/utils.py b/searx/utils.py
index ffc9a39d6..abc330be2 100644
--- a/searx/utils.py
+++ b/searx/utils.py
@@ -372,7 +372,7 @@ def _get_lang_to_lc_dict(lang_list: List[str]) -> Dict[str, str]:
# babel's get_global contains all sorts of miscellaneous locale and territory related data
# see get_global in: https://github.com/python-babel/babel/blob/master/babel/core.py
-def _get_from_babel(lang_code: str, key: str):
+def _get_from_babel(lang_code: str, key):
match = get_global(key).get(lang_code.replace('-', '_'))
# for some keys, such as territory_aliases, match may be a list
if isinstance(match, str):