@@ -257,7 +257,7 @@ def main():
257
257
parser .add_argument (
258
258
"-allow-enabling-alpha-checkers" ,
259
259
action = "store_true" ,
260
- help = "allow alpha checkers from " " clang-analyzer." ,
260
+ help = "allow alpha checkers from clang-analyzer." ,
261
261
)
262
262
parser .add_argument (
263
263
"-clang-tidy-binary" , metavar = "PATH" , help = "path to clang-tidy binary"
@@ -270,7 +270,7 @@ def main():
270
270
parser .add_argument (
271
271
"-checks" ,
272
272
default = None ,
273
- help = "checks filter, when not specified, use clang-tidy " " default" ,
273
+ help = "checks filter, when not specified, use clang-tidy default" ,
274
274
)
275
275
config_group = parser .add_mutually_exclusive_group ()
276
276
config_group .add_argument (
@@ -303,7 +303,7 @@ def main():
303
303
parser .add_argument (
304
304
"-line-filter" ,
305
305
default = None ,
306
- help = "List of files with line ranges to filter the" " warnings." ,
306
+ help = "List of files with line ranges to filter the warnings." ,
307
307
)
308
308
if yaml :
309
309
parser .add_argument (
@@ -335,12 +335,12 @@ def main():
335
335
)
336
336
parser .add_argument ("-fix" , action = "store_true" , help = "apply fix-its" )
337
337
parser .add_argument (
338
- "-format" , action = "store_true" , help = "Reformat code " " after applying fixes"
338
+ "-format" , action = "store_true" , help = "Reformat code after applying fixes"
339
339
)
340
340
parser .add_argument (
341
341
"-style" ,
342
342
default = "file" ,
343
- help = "The style of reformat " " code after applying fixes" ,
343
+ help = "The style of reformat code after applying fixes" ,
344
344
)
345
345
parser .add_argument (
346
346
"-use-color" ,
@@ -359,14 +359,14 @@ def main():
359
359
dest = "extra_arg" ,
360
360
action = "append" ,
361
361
default = [],
362
- help = "Additional argument to append to the compiler " " command line." ,
362
+ help = "Additional argument to append to the compiler command line." ,
363
363
)
364
364
parser .add_argument (
365
365
"-extra-arg-before" ,
366
366
dest = "extra_arg_before" ,
367
367
action = "append" ,
368
368
default = [],
369
- help = "Additional argument to prepend to the compiler " " command line." ,
369
+ help = "Additional argument to prepend to the compiler command line." ,
370
370
)
371
371
parser .add_argument (
372
372
"-quiet" , action = "store_true" , help = "Run clang-tidy in quiet mode"
@@ -381,7 +381,7 @@ def main():
381
381
parser .add_argument (
382
382
"-warnings-as-errors" ,
383
383
default = None ,
384
- help = "Upgrades warnings to errors. Same format as " " '-checks'" ,
384
+ help = "Upgrades warnings to errors. Same format as '-checks'" ,
385
385
)
386
386
args = parser .parse_args ()
387
387
0 commit comments