Skip to content

Commit fccb41c

Browse files
author
Benjamin Olmstead
committed
Clean up help strings post-Black.
1 parent e23c43e commit fccb41c

File tree

1 file changed

+6
-8
lines changed

1 file changed

+6
-8
lines changed

embossc

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)