(*args: P.args, **kwargs: P.kwargs)
| 694 | |
| 695 | @wraps(func) |
| 696 | async def async_decorated(*args: P.args, **kwargs: P.kwargs) -> Any: |
| 697 | return await request_manager().execute( |
| 698 | translated, |
| 699 | deduplicate, |
| 700 | *args, |
| 701 | **kwargs, |
| 702 | ) |
| 703 | |
| 704 | return async_decorated |
| 705 |
nothing calls this directly
no test coverage detected