From d95bca479dd49830bda10dad40882385533e3c39 Mon Sep 17 00:00:00 2001 From: Moishe Lettvin Date: Mon, 8 Jan 2024 15:58:11 -0500 Subject: [PATCH] update 01 sample --- src/samples/theoretical-to-real/01-say-one-thing.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/samples/theoretical-to-real/01-say-one-thing.py b/src/samples/theoretical-to-real/01-say-one-thing.py index 22a671542..726330646 100644 --- a/src/samples/theoretical-to-real/01-say-one-thing.py +++ b/src/samples/theoretical-to-real/01-say-one-thing.py @@ -39,7 +39,7 @@ async def main(room_url): async for audio in audio_generator: transport.output_queue.put(OutputQueueFrame(FrameType.AUDIO_FRAME, audio)) - transport.run() + await transport.run() if __name__ == "__main__":