From 59586e0a785c32fe2369bc1ab054f0649b1e853c Mon Sep 17 00:00:00 2001 From: Jason Hunter Date: Mon, 18 Dec 2023 02:21:43 -0500 Subject: [PATCH] ignore ruff errors with reason --- frigate/__main__.py | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/frigate/__main__.py b/frigate/__main__.py index 276589f17..baab67e76 100644 --- a/frigate/__main__.py +++ b/frigate/__main__.py @@ -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()