Skip to content

Commit b74eee6

Browse files
committed
fix: Use nargs
Signed-off-by: oliver könig <okoenig@nvidia.com>
1 parent c3836cd commit b74eee6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

scripts/performance/argument_parser.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -422,8 +422,8 @@ def parse_cli_args():
422422
slurm_args.add_argument(
423423
"-cb",
424424
"--custom_bash_cmds",
425-
type=list_of_strings,
426-
help="Comma separated string of bash commands",
425+
nargs="*",
426+
help="List of bash commands to execute before the main command",
427427
default=[],
428428
)
429429
slurm_args.add_argument(

0 commit comments

Comments
 (0)