import click from chia.plotters.plotters import call_plotters @click.command( "plotters", short_help="Advanced plotting options", context_settings={"ignore_unknown_options": True}, add_help_option=False, ) @click.pass_context @click.argument("args", nargs=-1) def plotters_cmd(ctx: click.Context, args): call_plotters(ctx.obj["root_path"], args)