diff --git a/capa/features/extractors/base_extractor.py b/capa/features/extractors/base_extractor.py index 07a408462..b67488c67 100644 --- a/capa/features/extractors/base_extractor.py +++ b/capa/features/extractors/base_extractor.py @@ -31,11 +31,6 @@ class SampleHashes: sha1: str sha256: str - def __iter__(self) -> Iterator[str]: - yield self.md5 - yield self.sha1 - yield self.sha256 - @classmethod def from_bytes(cls, buf: bytes) -> "SampleHashes": md5 = hashlib.md5()