mirror of
https://github.com/blakeblackshear/frigate.git
synced 2026-02-07 11:45:24 +03:00
ignore ruff errors with reason
This commit is contained in:
parent
3b529ede36
commit
59586e0a78
@ -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()
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user