INNER CODE UNIT · Python
wait_for_frames
TNtube/Cardia · cardia.py/src/cardia/coroutines/__init__.py:5
async def wait_for_frames(frames: int = 1):
for _ in range(frames):
await _wait()
@types.coroutine
def _wait():
yield
INNER CODE UNIT · Python
TNtube/Cardia · cardia.py/src/cardia/coroutines/__init__.py:5
async def wait_for_frames(frames: int = 1):
for _ in range(frames):
await _wait()
@types.coroutine
def _wait():
yield