Skip to content

Commit 3335b99

Browse files
committed
parse args bug
1 parent 4d7384c commit 3335b99

File tree

1 file changed

+1
-10
lines changed

1 file changed

+1
-10
lines changed

src/DataBUS/neotomaHelpers/parse_arguments.py

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -54,15 +54,6 @@ def parse_arguments():
5454
help="Validation logs. In order to get logs, validation must be run with --upload False first.",
5555
)
5656

57-
parser.add_argument(
58-
"--overwrite",
59-
type=bool,
60-
nargs="?",
61-
const=False,
62-
default=False,
63-
help="True/False overwriting option for uploader",
64-
)
65-
6657
parser.add_argument(
6758
"--upload",
6859
type=bool,
@@ -84,4 +75,4 @@ def parse_arguments():
8475
f"The file '{args.template}' could not be found within the current path."
8576
)
8677

87-
return {"data": args.data, "template": args.template, "overwrite": args.overwrite}
78+
return {"data": args.data, "template": args.template, "upload": args.upload, "logs": args.log}

0 commit comments

Comments
 (0)