(*args: Any, **kwargs: Any)
| 26 | |
| 27 | @functools.wraps(f) |
| 28 | async def wrapper(*args: Any, **kwargs: Any) -> Any: |
| 29 | loop = asyncio.get_event_loop() |
| 30 | return await loop.run_in_executor(None, functools.partial(f, *args, **kwargs)) |
| 31 | |
| 32 | return wrapper |
| 33 |
nothing calls this directly
no outgoing calls
no test coverage detected