diff --git a/app/deploy_system.py b/app/deploy_system.py index ace747ca..48aef089 100644 --- a/app/deploy_system.py +++ b/app/deploy_system.py @@ -24,10 +24,9 @@ from .util import include_exclude_check @click.command() @click.option("--include", help="only start these components") @click.option("--exclude", help="don\'t start these components") -@click.option("--score", help="read list of components from file") @click.argument('command') # help: command: up|down|ps @click.pass_context -def command(ctx, include, exclude, score, command): +def command(ctx, include, exclude, command): '''deploy a stack''' # TODO: implement option exclusion and command value constraint lost with the move from argparse to click