Skip to content

Commit 6d4dc56

Browse files
committed
Fix TypeError for argument multi nargs value defination
1 parent 29594e5 commit 6d4dc56

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

charon/cmd/cmd_upload.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,7 @@
3737
@argument(
3838
"repos",
3939
type=str,
40-
nargs='+', # This allows multiple arguments for zip urls
41-
required=True
40+
nargs=-1 # This allows multiple arguments for zip urls
4241
)
4342
@option(
4443
"--product",

0 commit comments

Comments
 (0)