Removing some print debugging

This commit is contained in:
Darren Burns
2022-11-21 13:28:26 +00:00
parent b5a1a17f42
commit cbbfcb9a2c

View File

@@ -18,8 +18,6 @@ class AwaitRemove:
def __await__(self) -> Generator[None, None, None]:
async def await_prune() -> None:
"""Wait for the prune operation to finish."""
print("BEFORE REMOVE FINISH")
await self.finished_flag.wait()
print("AFTER REMOVE FINISH")
return await_prune().__await__()