adding the whole notion of "what step are we on"
This commit is contained in:
@@ -11,9 +11,13 @@ import argparse
|
|||||||
|
|
||||||
import argparse
|
import argparse
|
||||||
parser = argparse.ArgumentParser()
|
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",
|
parser.add_argument("-v", "--verbosity", help="increase output verbosity",
|
||||||
action="store_true")
|
action="store_true")
|
||||||
args = parser.parse_args()
|
args = parser.parse_args()
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
if (args.verbosity):
|
if (args.verbosity):
|
||||||
print("Verbosity is enabled")
|
print("Verbosity is enabled")
|
||||||
|
|||||||
Reference in New Issue
Block a user