(*args, **kwargs)
| 318 | def decorator(function): |
| 319 | @functools.wraps(function) |
| 320 | def wrapper(*args, **kwargs): |
| 321 | verify_arg_signature(function, args, kwargs) |
| 322 | return function(*args, **kwargs) |
| 323 | |
| 324 | wrapper.__dict__["command_name"] = name or function.__name__.replace("_", ".") |
| 325 | return wrapper |
nothing calls this directly
no test coverage detected
searching dependent graphs…