(*args: P.args, **kwargs: P.kwargs)
| 61 | |
| 62 | @wraps(func) |
| 63 | def inner(*args: P.args, **kwargs: P.kwargs) -> T: |
| 64 | actual = _decay_params(func, args, kwargs) |
| 65 | return func(**actual) # type: ignore |
| 66 | |
| 67 | return inner |
| 68 |
nothing calls this directly
no test coverage detected