Uses [Caching](/polyaxon_cli/introduction//Caching)
user, project_name, group = ctx.obj["user"], ctx.obj["project_name"], ctx.obj["group"]
if not click.confirm("Are sure you want to delete experiment group `{}`".format(group)):
click.echo("Existing without deleting experiment group.")
sys.exit(0)
After Change
Uses [Caching](/polyaxon_cli/introduction//Caching)
user, project_name, group = get_group_or_local(ctx.obj["project"], ctx.obj["group"])
if not click.confirm("Are sure you want to delete experiment group `{}`".format(group)):
click.echo("Existing without deleting experiment group.")
sys.exit(0)