ignore ruff errors with reason

This commit is contained in:
Jason Hunter 2023-12-18 02:21:43 -05:00
parent 3b529ede36
commit 59586e0a78

View File

@ -1,14 +1,15 @@
# This is required to satisfy the chromadb dependency
__import__("pysqlite3") __import__("pysqlite3")
import sys import sys # noqa: E402
sys.modules["sqlite3"] = sys.modules.pop("pysqlite3") sys.modules["sqlite3"] = sys.modules.pop("pysqlite3")
import faulthandler import faulthandler # noqa: E402
import threading import threading # noqa: E402
from flask import cli from flask import cli # noqa: E402
from frigate.app import FrigateApp from frigate.app import FrigateApp # noqa: E402
faulthandler.enable() faulthandler.enable()