Resolve git clang indentation error

BUG=b:169530171
TEST=git cl format --no-clang-format

Change-Id: I5c330dc227c7c1300912569a5a11a155ba4c25a8
Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/third_party/autotest/+/2500132
Commit-Queue: Jiyoun Ha <jiyounha@chromium.org>
Tested-by: Jiyoun Ha <jiyounha@chromium.org>
Auto-Submit: Jiyoun Ha <jiyounha@chromium.org>
Reviewed-by: Kazuhiro Inaba <kinaba@chromium.org>
diff --git a/server/cros/tradefed/generate_controlfiles_common.py b/server/cros/tradefed/generate_controlfiles_common.py
index 150dd08..0f3177b 100755
--- a/server/cros/tradefed/generate_controlfiles_common.py
+++ b/server/cros/tradefed/generate_controlfiles_common.py
@@ -1264,32 +1264,32 @@
         description='Create control files for a CTS bundle on GS.',
         formatter_class=argparse.RawTextHelpFormatter)
     parser.add_argument(
-        'uris',
-        nargs='+',
-        help='List of Google Storage URIs to CTS bundles. Example:\n'
-        'gs://chromeos-arc-images/cts/bundle/P/'
-        'android-cts-9.0_r9-linux_x86-x86.zip')
+            'uris',
+            nargs='+',
+            help='List of Google Storage URIs to CTS bundles. Example:\n'
+            'gs://chromeos-arc-images/cts/bundle/P/'
+            'android-cts-9.0_r9-linux_x86-x86.zip')
     parser.add_argument(
-        '--is_public',
-        dest='is_public',
-        default=False,
-        action='store_true',
-        help='Generate the public control files for CTS, default generate'
-        ' the internal control files')
+            '--is_public',
+            dest='is_public',
+            default=False,
+            action='store_true',
+            help='Generate the public control files for CTS, default generate'
+            ' the internal control files')
     parser.add_argument(
-        '--is_latest',
-        dest='is_latest',
-        default=False,
-        action='store_true',
-        help='Generate the control files for CTS from the latest CTS bundle'
-        ' stored in the internal storage')
+            '--is_latest',
+            dest='is_latest',
+            default=False,
+            action='store_true',
+            help='Generate the control files for CTS from the latest CTS bundle'
+            ' stored in the internal storage')
     parser.add_argument(
-        '--cache_dir',
-        dest='cache_dir',
-        default=None,
-        action='store',
-        help='Cache directory for downloaded bundle file. Uses the cached '
-             'bundle file if exists, or caches a downloaded file to this '
-             'directory if not.')
+            '--cache_dir',
+            dest='cache_dir',
+            default=None,
+            action='store',
+            help='Cache directory for downloaded bundle file. Uses the cached '
+            'bundle file if exists, or caches a downloaded file to this '
+            'directory if not.')
     args = parser.parse_args()
     run(args.uris, args.is_public, args.is_latest, args.cache_dir)