docs: clarify videodb reference guides

This commit is contained in:
Affaan Mustafa
2026-03-10 21:04:02 -07:00
parent b8ab34e362
commit b0c2e77bd8
3 changed files with 4 additions and 1 deletions

View File

@@ -184,7 +184,7 @@ async def main_async():
listen_task = asyncio.create_task(listen_with_retry())
shutdown_task = asyncio.create_task(shutdown_event.wait())
done, pending = await asyncio.wait(
_done, pending = await asyncio.wait(
[listen_task, shutdown_task],
return_when=asyncio.FIRST_COMPLETED,
)