From f7eb2d7873a72609e4949d158f1953077fa01012 Mon Sep 17 00:00:00 2001 From: Sefik Ilkin Serengil Date: Sat, 5 Oct 2024 22:29:26 +0100 Subject: [PATCH] too many args warning discarded --- deepface/models/Detector.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deepface/models/Detector.py b/deepface/models/Detector.py index 48f235c..004f0d3 100644 --- a/deepface/models/Detector.py +++ b/deepface/models/Detector.py @@ -6,7 +6,7 @@ import numpy as np # Notice that all facial detector models must be inherited from this class -# pylint: disable=unnecessary-pass, too-few-public-methods +# pylint: disable=unnecessary-pass, too-few-public-methods, too-many-instance-attributes class Detector(ABC): @abstractmethod def detect_faces(self, img: np.ndarray) -> List["FacialAreaRegion"]: