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/faux.py b/api/faux.py
index 4ea3c1f..3bae1ba 100644
--- a/api/faux.py
+++ b/api/faux.py
@@ -16,9 +16,9 @@
     single function.
 
     Args:
-      faux_result_factory: A function with the same signature as a regular
-          API endpoint function that populates the output with success or error
-          results, as requested, without executing the endpoint.
+        faux_result_factory: A function with the same signature as a regular
+            API endpoint function that populates the output with success or
+            error results, as requested, without executing the endpoint.
     """
     assert faux_result_factory
 
@@ -41,8 +41,8 @@
     """A decorator to handle mock call responses.
 
     Args:
-      faux_result_factory: A function with the same signature as a regular
-          API endpoint function that populates the output
+        faux_result_factory: A function with the same signature as a regular
+            API endpoint function that populates the output
     """
     assert faux_result_factory