File tree 3 files changed +6
-0
lines changed
3 files changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -868,6 +868,7 @@ Optional Arguments:
868
868
-g, --glob Will interpret given paths as glob patterns to
869
869
resolve if given.
870
870
-I, --input-dir INPUT_DIR Directory where the HTML files are stored.
871
+ Defaults to ` downloaded ` .
871
872
--mimetype-column MIMETYPE_COLUMN
872
873
Name of the CSV column containing file mimetype.
873
874
Defaults to ` mimetype ` .
@@ -1197,6 +1198,7 @@ Optional Arguments:
1197
1198
-g, --glob Will interpret given paths as glob patterns to
1198
1199
resolve if given.
1199
1200
-I, --input-dir INPUT_DIR Directory where the HTML files are stored.
1201
+ Defaults to ` downloaded ` .
1200
1202
--mimetype-column MIMETYPE_COLUMN
1201
1203
Name of the CSV column containing file mimetype.
1202
1204
Defaults to ` mimetype ` .
Original file line number Diff line number Diff line change 1
1
from casanova import IndexedResumer
2
2
3
3
from minet .cli .argparse import command
4
+ from minet .cli .constants import DEFAULT_CONTENT_FOLDER
4
5
5
6
6
7
def resolve_arguments (cli_args ):
@@ -101,6 +102,7 @@ def resolve_arguments(cli_args):
101
102
{
102
103
"flags" : ["-I" , "--input-dir" ],
103
104
"help" : "Directory where the HTML files are stored." ,
105
+ "default" : DEFAULT_CONTENT_FOLDER
104
106
},
105
107
{
106
108
"flags" : ["-p" , "--processes" ],
Original file line number Diff line number Diff line change 1
1
from minet .cli .argparse import command
2
+ from minet .cli .constants import DEFAULT_CONTENT_FOLDER
2
3
3
4
4
5
def resolve_arguments (cli_args ):
@@ -126,6 +127,7 @@ def resolve_arguments(cli_args):
126
127
{
127
128
"flags" : ["-I" , "--input-dir" ],
128
129
"help" : "Directory where the HTML files are stored." ,
130
+ "default" : DEFAULT_CONTENT_FOLDER
129
131
},
130
132
{
131
133
"flags" : ["-p" , "--processes" ],
You can’t perform that action at this time.
0 commit comments