We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
This code causes an error: RuntimeError: Lock is not acquired.
RuntimeError: Lock is not acquired.
lock = asyncio.Lock() async with lock: pass
Workaround:
lock = asyncio.Lock() async with lock as lock_test: pass