(parsed_args, **kwargs)
| 91 | |
| 92 | def validate_mutually_exclusive_handler(*groups): |
| 93 | def _handler(parsed_args, **kwargs): |
| 94 | return validate_mutually_exclusive(parsed_args, *groups) |
| 95 | |
| 96 | return _handler |
| 97 |
nothing calls this directly
no test coverage detected