From 722ee2f3d05460538de322b016a4724643f4e789 Mon Sep 17 00:00:00 2001 From: Yacine Elhamer <16624109+yelhamer@users.noreply.github.com> Date: Mon, 10 Jul 2023 12:54:15 +0100 Subject: [PATCH] remove redundant print Co-authored-by: Willi Ballenthin --- capa/features/extractors/cape/file.py | 1 - 1 file changed, 1 deletion(-) diff --git a/capa/features/extractors/cape/file.py b/capa/features/extractors/cape/file.py index 2564d0db..5cacb5f6 100644 --- a/capa/features/extractors/cape/file.py +++ b/capa/features/extractors/cape/file.py @@ -26,7 +26,6 @@ def get_processes(static: Dict) -> Iterator[ProcessHandle]: def rec(process): address: ProcessAddress = ProcessAddress(pid=process["pid"], ppid=process["parent_id"]) inner: Dict[str, str] = {"name": process["name"]} - print(address) yield ProcessHandle(address=address, inner=inner) for child in process["children"]: yield from rec(child)