Remove mistakenly-added print statement

This commit is contained in:
Moishe Lettvin
2024-03-28 11:47:11 -04:00
parent 565acfa9c9
commit ed91bc0f66

View File

@@ -15,7 +15,6 @@ class SequentialMergePipeline(Pipeline):
for idx, pipeline in enumerate(self.pipelines):
while True:
frame = await pipeline.sink.get()
print(idx, frame)
if isinstance(
frame, EndFrame) or isinstance(
frame, EndPipeFrame):