remove redundant print

Co-authored-by: Willi Ballenthin <willi.ballenthin@gmail.com>
This commit is contained in:
Yacine Elhamer
2023-07-10 12:54:15 +01:00
committed by GitHub
parent e5f5d542d0
commit 722ee2f3d0

View File

@@ -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)