combine string constants after black reformat

Bug: 343563953
Test: unittests
Change-Id: Ie479be271f0cf07e985e18164793dc662edd3422
Reviewed-on: https://gerrit-review.googlesource.com/c/git-repohooks/+/477581
Commit-Queue: Mike Frysinger <vapier@google.com>
Reviewed-by: Raul Rangel <rrangel@google.com>
Tested-by: Mike Frysinger <vapier@google.com>
diff --git a/tools/clang-format.py b/tools/clang-format.py
index 7b57d5d..1854419 100755
--- a/tools/clang-format.py
+++ b/tools/clang-format.py
@@ -59,7 +59,7 @@
         "--extensions",
         metavar="EXTENSIONS",
         type=str,
-        help="Comma-separated list of file extensions to " "format.",
+        help="Comma-separated list of file extensions to format.",
     )
     parser.add_argument(
         "--fix",
@@ -85,7 +85,7 @@
         "files",
         type=str,
         nargs="*",
-        help="If specified, only consider differences in " "these files.",
+        help="If specified, only consider differences in these files.",
     )
     return parser
 
diff --git a/tools/google-java-format.py b/tools/google-java-format.py
index cf5df66..519fac6 100755
--- a/tools/google-java-format.py
+++ b/tools/google-java-format.py
@@ -64,7 +64,7 @@
     parser.add_argument(
         "files",
         nargs="*",
-        help="If specified, only consider differences in " "these files.",
+        help="If specified, only consider differences in these files.",
     )
     return parser
 
diff --git a/tools/pylint.py b/tools/pylint.py
index 556f2ff..92b0dd3 100755
--- a/tools/pylint.py
+++ b/tools/pylint.py
@@ -172,7 +172,7 @@
     parser.add_argument(
         "--no-rcfile",
         dest="use_default_conf",
-        help="Specify to use the executable's default " "configuration.",
+        help="Specify to use the executable's default configuration.",
         action="store_true",
     )
     parser.add_argument("files", nargs="+")