You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Remove unnecessary type checks in voice task cleanup
Simplified the cleanup logic by removing isinstance checks for
asyncio.Task. All tasks are created through asyncio.create_task(),
so these type checks are unnecessary.
This makes the code cleaner and avoids test-specific workarounds
in production code, following the same pattern as PR openai#1976.
0 commit comments