File tree Expand file tree Collapse file tree 2 files changed +7
-5
lines changed Expand file tree Collapse file tree 2 files changed +7
-5
lines changed Original file line number Diff line number Diff line change 1
- usage: flatten-tool flatten [-h] [-s SCHEMA] [-f OUTPUT_FORMAT]
2
- [-m MAIN_SHEET_NAME ] [-o OUTPUT_NAME ]
3
- [-- root-list-path ROOT_LIST_PATH] [--rollup ]
4
- [-r ROOT_ID] [--use-titles]
1
+ usage: flatten-tool flatten [-h] [-s SCHEMA] [-f OUTPUT_FORMAT] [--xml]
2
+ [--id-name ID_NAME ] [-m MAIN_SHEET_NAME ]
3
+ [-o OUTPUT_NAME] [-- root-list-path ROOT_LIST_PATH]
4
+ [--rollup] [- r ROOT_ID] [--use-titles]
5
5
input_name
6
6
7
7
positional arguments:
@@ -14,6 +14,8 @@ optional arguments:
14
14
-f OUTPUT_FORMAT, --output-format OUTPUT_FORMAT
15
15
Type of template you want to create. Defaults to all
16
16
available options
17
+ --xml Use XML as the input format
18
+ --id-name ID_NAME String to use for the identifier key, defaults to 'id'
17
19
-m MAIN_SHEET_NAME, --main-sheet-name MAIN_SHEET_NAME
18
20
The name of the main sheet, as seen in the first tab
19
21
of the spreadsheet for example. Defaults to main
Original file line number Diff line number Diff line change @@ -71,7 +71,7 @@ def create_parser():
71
71
parser_flatten .add_argument (
72
72
"--xml" ,
73
73
action = 'store_true' ,
74
- help = "Use XML as the output format" )
74
+ help = "Use XML as the input format" )
75
75
parser_flatten .add_argument (
76
76
"--id-name" ,
77
77
help = "String to use for the identifier key, defaults to 'id'" )
You can’t perform that action at this time.
0 commit comments