api: Fix bad docblock indentation.

Also fix resulting line-too-long lint errors, but not other
existing instances of line-too-long errors.

BUG=b:233893248
TEST=cros lint

Change-Id: I75ebbcab5236551dea618f34783ec2fea7af60f1
Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/chromite/+/3943256
Tested-by: Alex Klein <saklein@chromium.org>
Reviewed-by: Sloan Johnson <sloanjohnson@google.com>
Auto-Submit: Alex Klein <saklein@chromium.org>
Commit-Queue: Sloan Johnson <sloanjohnson@google.com>
diff --git a/api/api_config.py b/api/api_config.py
index efb9340..d3ab5c2 100644
--- a/api/api_config.py
+++ b/api/api_config.py
@@ -99,9 +99,9 @@
         """Get the config as a proto.
 
         Args:
-          for_inside_execution: Allows avoiding propagating configs that are
-            irrelevant for the build api process executed inside the chroot.
-            Enabled by default.
+            for_inside_execution: Allows avoiding propagating configs that are
+                irrelevant for the build api process executed inside the chroot.
+                Enabled by default.
         """
         config = build_api_config_pb2.BuildApiConfig()
         config.call_type = self.ENUM_TYPE_MAP[self._call_type]
@@ -119,7 +119,7 @@
     """Build an ApiConfig instance from a BuildApiConfig message.
 
     Args:
-      config_proto: The proto config.
+        config_proto: The proto config.
     """
 
     if config_proto.call_type not in ApiConfig.TYPE_ENUM_MAP: