Is there a way I can redirect one of the subcommand --help output to the group command's --help?
For example:
@click.group(cls=DefaultGroup, default='foo', default_if_no_args=True)
def cli():
pass
@cli.command()
def foo():
click.echo('foo')
cli --help should output foo --help description.
Is this possible to customize --help in this way?
Is there a way I can redirect one of the subcommand --help output to the group command's --help?
For example:
cli --helpshould outputfoo --helpdescription.Is this possible to customize --help in this way?