Skip to content

Commit c351f98

Browse files
committed
bug in args parser
1 parent 1e35a7a commit c351f98

File tree

3 files changed

+1
-13
lines changed

3 files changed

+1
-13
lines changed

img/DataBUS.png

451 KB
Loading

pyproject.toml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,6 @@ classifiers = [
2222
"Topic :: Software Development :: Object Brokering"
2323
]
2424
dependencies = [
25-
"numpy>1.25.0",
26-
"pandas==2.0.2",
2725
"psycopg2-binary>=2.9.10",
2826
"python-dateutil==2.8.2",
2927
"python-dotenv==1.0.0",
@@ -32,7 +30,6 @@ dependencies = [
3230
"six==1.16.0",
3331
"tzdata==2023.3",
3432
"openpyxl",
35-
"requests",
3633
"tqdm>=4.65.0",
3734
"mkdocs>=1.6.1",
3835
"mkdocs-material>=9.6.16",

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.logs}

0 commit comments

Comments
 (0)