mirror of
https://github.com/kevin1024/vcrpy.git
synced 2025-12-08 16:53:23 +00:00
4 lines
127 B
Python
4 lines
127 B
Python
async def handle_coroutine(vcr, fn): # noqa: E999
|
|
with vcr as cassette:
|
|
return (await fn(cassette)) # noqa: E999
|