From 80362f11fc38300f90c75c526d8780f88292e0e8 Mon Sep 17 00:00:00 2001 From: David Boreham Date: Mon, 3 Oct 2022 19:44:17 -0600 Subject: [PATCH] Revert unrealted change --- app/deploy_system.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) 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