@@ -38,9 +38,8 @@ def _parse_args(argv):
3838 dest = "import_dirs" ,
3939 action = "append" ,
4040 default = ["." ],
41- help = "A directory to use when searching for imported "
42- "embs. If no import-dirs are specified, the "
43- "current directory will be used." ,
41+ help = """A directory to use when searching for imported embs. If no
42+ import-dirs are specified, the current directory will be used.""" ,
4443 )
4544 parser .add_argument (
4645 "--generate" ,
@@ -53,20 +52,19 @@ def _parse_args(argv):
5352 "--output-path" ,
5453 nargs = 1 ,
5554 default = "." ,
56- help = """Prefix path to use for the generated output file.
57- Defaults to '.'""" ,
55+ help = "Prefix path to use for the generated output file. Defaults to '.'" ,
5856 )
5957 parser .add_argument (
6058 "--output-file" ,
6159 nargs = 1 ,
62- help = """File name to be used for the generated output file.
63- Defaults to input_file suffixed by '.h'""" ,
60+ help = """File name to be used for the generated output file. Defaults to
61+ input_file suffixed by '.h'""" ,
6462 )
6563 parser .add_argument (
6664 "--cc-enum-traits" ,
6765 action = argparse .BooleanOptionalAction ,
6866 default = True ,
69- help = """ Controls generation of EnumTraits by the C++ backend"" " ,
67+ help = "Controls generation of EnumTraits by the C++ backend" ,
7068 )
7169 parser .add_argument ("input_file" , type = str , nargs = 1 , help = ".emb file to compile." )
7270 return parser .parse_args (argv [1 :])
0 commit comments