Skip to content

Commit 321b2fe

Browse files
committed
formatting fixes
1 parent 4e0c6a6 commit 321b2fe

File tree

1 file changed

+3
-8
lines changed

1 file changed

+3
-8
lines changed

toml_sort/cli.py

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -268,8 +268,7 @@ def get_parser(defaults: Dict[str, Any]) -> ArgumentParser:
268268
comments.add_argument(
269269
"--no-comments",
270270
help=(
271-
"remove all comments. Implies no header, footer, inline, or "
272-
"block comments"
271+
"remove all comments. Implies no header, footer, inline, or block comments"
273272
),
274273
action="store_true",
275274
)
@@ -305,9 +304,7 @@ def get_parser(defaults: Dict[str, Any]) -> ArgumentParser:
305304
)
306305
formatting.add_argument(
307306
"--spaces-indent-inline-array",
308-
help=(
309-
"the number of spaces to indent a multiline inline array " "(default: 2)"
310-
),
307+
help=("the number of spaces to indent a multiline inline array (default: 2)"),
311308
type=int,
312309
choices=[2, 4, 6, 8],
313310
default=2,
@@ -319,9 +316,7 @@ def get_parser(defaults: Dict[str, Any]) -> ArgumentParser:
319316
)
320317
parser.add_argument(
321318
"--check",
322-
help=(
323-
"silently check if an original file would be " "changed by the formatter"
324-
),
319+
help=("silently check if an original file would be changed by the formatter"),
325320
action="store_true",
326321
)
327322
parser.add_argument(

0 commit comments

Comments
 (0)