scripts: Lint fix.

Fix line-too-long lint.

BUG=b:233893248
TEST=cros lint

Change-Id: If56957d45b72dd609a0c556e4f7e489c3eba3bfa
Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/chromite/+/4166321
Auto-Submit: Alex Klein <saklein@chromium.org>
Reviewed-by: Cindy Lin <xcl@google.com>
Commit-Queue: Alex Klein <saklein@chromium.org>
Tested-by: Alex Klein <saklein@chromium.org>
diff --git a/scripts/cros.py b/scripts/cros.py
index 210ccb6..7dcf51c 100644
--- a/scripts/cros.py
+++ b/scripts/cros.py
@@ -88,8 +88,8 @@
             parser = GetOptions(namespace.help_subcommand)
             parser.parse_args([namespace.help_subcommand, "--help"])
 
-        # The user has selected a subcommand now, so get the full parser after we
-        # import the single subcommand.
+        # The user has selected a subcommand now, so get the full parser after
+        # we import the single subcommand.
         parser = GetOptions(namespace.subcommand)
         namespace = parser.parse_args(argv)
         namespace.command_class.ProcessOptions(parser, namespace)