From 8d1274167378002609aece503537d3ef17ddca8d Mon Sep 17 00:00:00 2001 From: rany2 Date: Sun, 21 Apr 2024 18:09:54 +0300 Subject: [PATCH] Fix minor typo in examples/sync_audio_stream_in_async_context.py This typo does not cause any errors but it is better to fix it. Signed-off-by: rany2 --- examples/sync_audio_stream_in_async_context.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/sync_audio_stream_in_async_context.py b/examples/sync_audio_stream_in_async_context.py index 68f0d44..54c20a7 100644 --- a/examples/sync_audio_stream_in_async_context.py +++ b/examples/sync_audio_stream_in_async_context.py @@ -26,7 +26,7 @@ def main() -> None: async def amain() -> None: - """ " + """ Async main function to call sync main function This demonstrates that this works even when called from an async function.