From c44ed699798ae5e3ba5cd41036c9985ddbe5c19b Mon Sep 17 00:00:00 2001 From: Nicolas Mowen Date: Wed, 6 Nov 2024 08:47:04 -0700 Subject: [PATCH] Formatting --- frigate/util/model.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/frigate/util/model.py b/frigate/util/model.py index b2722165e..3415d6c49 100644 --- a/frigate/util/model.py +++ b/frigate/util/model.py @@ -174,9 +174,7 @@ class FaceClassificationModel: self.classifier = None self.labeler = None - def classify_face( - self, embedding: np.ndarray - ) -> Optional[tuple[str, float]]: + def classify_face(self, embedding: np.ndarray) -> Optional[tuple[str, float]]: if not self.classifier: self.__build_classifier()