too many args warning discarded

This commit is contained in:
Sefik Ilkin Serengil 2024-10-05 22:29:26 +01:00
parent 6b115ebac2
commit f7eb2d7873

View File

@ -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"]: