Navigam's picture
feat: expand task suite to 22 challenges and update reward signal mechanics
6392732
Raw
History Blame Contribute Delete
140 Bytes
import asyncio
import threading
lock = threading.Lock()
async def process():
lock.acquire()
raise TimeoutError()
lock.release()