summaryrefslogtreecommitdiff
path: root/searx/engines/postgresql.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/engines/postgresql.py
parentededaab807a22abdd69a7c802cda3bb256d6ab51 (diff)
parent2babf59adcc9576e6520337515ff150e6434ad85 (diff)
Merge pull request #1569 from dalf/fix-pyright-reported-errors
Fix pyright errors
Diffstat (limited to 'searx/engines/postgresql.py')
-rw-r--r--searx/engines/postgresql.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/searx/engines/postgresql.py b/searx/engines/postgresql.py
index d8bbabe27..d7ff6a11b 100644
--- a/searx/engines/postgresql.py
+++ b/searx/engines/postgresql.py
@@ -6,7 +6,7 @@
# import error is ignored because the admin has to install mysql manually to use
# the engine
-import psycopg2 # pylint: disable=import-error
+import psycopg2 # pyright: ignore # pylint: disable=import-error
engine_type = 'offline'
host = "127.0.0.1"