Merge pull request #92 from daily-co/remove-bad-print

Remove mistakenly-added print statement
This commit is contained in:
Moishe Lettvin
2024-03-28 11:54:49 -04:00
committed by GitHub

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