adding the whole notion of "what step are we on"

This commit is contained in:
cktricky
2017-11-06 18:37:15 -05:00
parent 681e899fd0
commit 6e2461674c

View File

@@ -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")