summaryrefslogtreecommitdiff
path: root/searx/webapp.py
diff options
context:
space:
mode:
authorMarkus Heiser <markus.heiser@darmarIT.de>2022-07-30 18:40:16 +0200
committerGitHub <noreply@github.com>2022-07-30 18:40:16 +0200
commit88733c0ce6e76a78593b8e4060e33a617cce3cd8 (patch)
treed5ed9ed522b308b8d572b119da315196dd69ae87 /searx/webapp.py
parentededaab807a22abdd69a7c802cda3bb256d6ab51 (diff)
parent2babf59adcc9576e6520337515ff150e6434ad85 (diff)
Merge pull request #1569 from dalf/fix-pyright-reported-errors
Fix pyright errors
Diffstat (limited to 'searx/webapp.py')
-rwxr-xr-xsearx/webapp.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/searx/webapp.py b/searx/webapp.py
index 151eb5cc6..83bbeac06 100755
--- a/searx/webapp.py
+++ b/searx/webapp.py
@@ -1303,7 +1303,7 @@ def opensearch():
def favicon():
theme = request.preferences.get_value("theme")
return send_from_directory(
- os.path.join(app.root_path, settings['ui']['static_path'], 'themes', theme, 'img'),
+ os.path.join(app.root_path, settings['ui']['static_path'], 'themes', theme, 'img'), # pyright: ignore
'favicon.png',
mimetype='image/vnd.microsoft.icon',
)