mirror of
https://github.com/kevin1024/vcrpy.git
synced 2025-12-09 09:13:23 +00:00
8 lines
148 B
Python
8 lines
148 B
Python
import asyncio
|
|
|
|
|
|
@asyncio.coroutine
|
|
def handle_coroutine(vcr, fn):
|
|
with vcr as cassette:
|
|
return (yield from fn(cassette)) # noqa: E999
|