Add sqlite engine to pylint

This commit is contained in:
Noémi Ványi 2021-05-13 21:47:38 +02:00
parent 8e90a214ce
commit 0313797dfd
2 changed files with 3 additions and 1 deletions

1
manage
View File

@ -32,6 +32,7 @@ PYLINT_FILES=(
searx/engines/meilisearch.py
searx/engines/solidtorrents.py
searx/engines/solr.py
searx/engines/sqlite.py
searx/engines/springer.py
searx/engines/google_scholar.py
searx/engines/yahoo_news.py

View File

@ -3,6 +3,8 @@
SQLite database (Offline)
"""
# pylint: disable=missing-function-docstring
import sqlite3
engine_type = 'offline'
@ -47,4 +49,3 @@ def _fetch_results(cur):
res = cur.fetchone()
return results