mirror of
https://github.com/blakeblackshear/frigate.git
synced 2026-02-07 03:35:26 +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 sys
|
||||
import sys # noqa: E402
|
||||
|
||||
sys.modules["sqlite3"] = sys.modules.pop("pysqlite3")
|
||||
|
||||
import faulthandler
|
||||
import threading
|
||||
import faulthandler # noqa: E402
|
||||
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()
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user