cli: Fix docstring-section-indent lint errors.
Fix docstring-section-indent lint errors, and resulting
line-too-long errors. Also a few spelling fixes.
BUG=b:233893248
TEST=cros lint
Change-Id: I811a84ecf6ae5378627b77edb51296b525089d73
Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/chromite/+/3953473
Auto-Submit: Alex Klein <saklein@chromium.org>
Commit-Queue: Sloan Johnson <sloanjohnson@google.com>
Commit-Queue: Alex Klein <saklein@chromium.org>
Tested-by: Alex Klein <saklein@chromium.org>
Reviewed-by: Sloan Johnson <sloanjohnson@google.com>
diff --git a/cli/command_vm_test.py b/cli/command_vm_test.py
index a1d093f..71f3667 100644
--- a/cli/command_vm_test.py
+++ b/cli/command_vm_test.py
@@ -82,8 +82,8 @@
"""Initializes CommandVMTest.
Args:
- board: Board for the VM to run tests.
- image_path: Path to the image for the VM to run tests.
+ board: Board for the VM to run tests.
+ image_path: Path to the image for the VM to run tests.
"""
self.board = board
self.image_path = image_path
@@ -94,10 +94,10 @@
"""Builds a CLI command.
Args:
- command: The sub-command to build on (e.g. 'flash', 'deploy').
- device: The device's address for the command.
- pos_args: A list of positional arguments for the command.
- opt_args: A list of optional arguments for the command.
+ command: The sub-command to build on (e.g. 'flash', 'deploy').
+ device: The device's address for the command.
+ pos_args: A list of positional arguments for the command.
+ opt_args: A list of optional arguments for the command.
"""
raise NotImplementedError()