mirror of
https://github.com/mandiant/capa.git
synced 2025-12-12 15:49:46 -08:00
remove redundant print
Co-authored-by: Willi Ballenthin <willi.ballenthin@gmail.com>
This commit is contained in:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user