diff --git a/capa/features/extractors/base_extractor.py b/capa/features/extractors/base_extractor.py index a9a06d3b..e4d61bc2 100644 --- a/capa/features/extractors/base_extractor.py +++ b/capa/features/extractors/base_extractor.py @@ -305,10 +305,7 @@ class DynamicExtractor(FeatureExtractor): @abc.abstractmethod def get_processes(self) -> Iterator[ProcessHandle]: """ - Yields all the child-processes of a parent one. - - Attributes: - ph: parent process + Enumerate processes in the trace. """ raise NotImplementedError()