Formatting

This commit is contained in:
Nicolas Mowen 2024-11-06 08:47:04 -07:00
parent 749010b512
commit c44ed69979

View File

@ -174,9 +174,7 @@ class FaceClassificationModel:
self.classifier = None self.classifier = None
self.labeler = None self.labeler = None
def classify_face( def classify_face(self, embedding: np.ndarray) -> Optional[tuple[str, float]]:
self, embedding: np.ndarray
) -> Optional[tuple[str, float]]:
if not self.classifier: if not self.classifier:
self.__build_classifier() self.__build_classifier()