File tree Expand file tree Collapse file tree 1 file changed +3
-8
lines changed Expand file tree Collapse file tree 1 file changed +3
-8
lines changed Original file line number Diff line number Diff 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 (
You can’t perform that action at this time.
0 commit comments