From 6e2461674c5d3151968823058b56ce4b4c48bbe3 Mon Sep 17 00:00:00 2001 From: cktricky Date: Mon, 6 Nov 2017 18:37:15 -0500 Subject: [PATCH] adding the whole notion of "what step are we on" --- weirdAAL.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/weirdAAL.py b/weirdAAL.py index 3cccdbf..ade141a 100755 --- a/weirdAAL.py +++ b/weirdAAL.py @@ -11,9 +11,13 @@ import argparse import argparse parser = argparse.ArgumentParser() +parser.add_argument("-s", "--step", help="list the step you would like to run", +action="store", type=int, required=True) parser.add_argument("-v", "--verbosity", help="increase output verbosity", action="store_true") args = parser.parse_args() + + if (args.verbosity): print("Verbosity is enabled")