From fb56c3a1574fa2aa18fa1c21d108e0f7d7bac9b7 Mon Sep 17 00:00:00 2001 From: zramsay Date: Wed, 23 Aug 2023 17:32:55 -0400 Subject: [PATCH] add short help text for a deployment --- app/deployment.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/deployment.py b/app/deployment.py index 39a4ed1c..5d7794d9 100644 --- a/app/deployment.py +++ b/app/deployment.py @@ -30,6 +30,8 @@ class DeploymentContext: @click.option("--dir", required=True, help="path to deployment directory") @click.pass_context def command(ctx, dir): + '''create a deployment''' + # Check that --stack wasn't supplied if ctx.parent.obj.stack: print("Error: --stack can't be supplied with the deployment command") -- 2.45.2