diff options
author | Heinrich Schuchardt <heinrich.schuchardt@canonical.com> | 2021-11-23 00:01:48 +0100 |
---|---|---|
committer | Heinrich Schuchardt <heinrich.schuchardt@canonical.com> | 2021-11-26 22:02:37 +0100 |
commit | 6e6d37f7f9ed860a44443d144e1e689a72f05c78 (patch) | |
tree | e1c7a88da13d9ac232dc8e0e9a67b54bc63cfa7b | |
parent | 9aa1a14d13831cbddbdab8d28cd6005bf663bcea (diff) | |
download | u-boot-6e6d37f7f9ed860a44443d144e1e689a72f05c78.zip u-boot-6e6d37f7f9ed860a44443d144e1e689a72f05c78.tar.gz u-boot-6e6d37f7f9ed860a44443d144e1e689a72f05c78.tar.bz2 |
test: fix pylint error in u_boot_console_sandbox.py
* provide module docstring
Signed-off-by: Heinrich Schuchardt <heinrich.schuchardt@canonical.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
-rw-r--r-- | test/py/u_boot_console_sandbox.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/test/py/u_boot_console_sandbox.py b/test/py/u_boot_console_sandbox.py index 836f5a9..7e1eb0e 100644 --- a/test/py/u_boot_console_sandbox.py +++ b/test/py/u_boot_console_sandbox.py @@ -2,7 +2,9 @@ # Copyright (c) 2015 Stephen Warren # Copyright (c) 2015-2016, NVIDIA CORPORATION. All rights reserved. -# Logic to interact with the sandbox port of U-Boot, running as a sub-process. +""" +Logic to interact with the sandbox port of U-Boot, running as a sub-process. +""" import time from u_boot_spawn import Spawn |