Spaces:
Runtime error
Runtime error
Update cli.py
Browse files- t5s/cli.py +3 -0
t5s/cli.py
CHANGED
@@ -18,6 +18,9 @@ parser_req = command_subparser.add_parser(
|
|
18 |
)
|
19 |
|
20 |
parser_start = command_subparser.add_parser("start", help="Define parameters")
|
|
|
|
|
|
|
21 |
parser_dirs = command_subparser.add_parser(
|
22 |
"dirs",
|
23 |
help="Create directories that are ignored by git but required for " "the project",
|
|
|
18 |
)
|
19 |
|
20 |
parser_start = command_subparser.add_parser("start", help="Define parameters")
|
21 |
+
parser_start.add_argument(
|
22 |
+
"-d",
|
23 |
+
"--dataset",
|
24 |
parser_dirs = command_subparser.add_parser(
|
25 |
"dirs",
|
26 |
help="Create directories that are ignored by git but required for " "the project",
|