(*args: t.Any, **kwargs: t.Any)
| 187 | ctx = ctx.copy() |
| 188 | |
| 189 | def wrapper(*args: t.Any, **kwargs: t.Any) -> t.Any: |
| 190 | with ctx: |
| 191 | return ctx.app.ensure_sync(f)(*args, **kwargs) |
| 192 | |
| 193 | return update_wrapper(wrapper, f) # type: ignore[return-value] |
| 194 |
nothing calls this directly
no test coverage detected