diff options
author | Heinrich Schuchardt <heinrich.schuchardt@canonical.com> | 2021-11-23 00:01:49 +0100 |
---|---|---|
committer | Heinrich Schuchardt <heinrich.schuchardt@canonical.com> | 2021-11-26 22:02:37 +0100 |
commit | 2b5e7108594d4e100c88f44353d1fed6456d6471 (patch) | |
tree | b4a3b3ca5d9b6b6f10e3d6880f1caa17219776c2 | |
parent | 6e6d37f7f9ed860a44443d144e1e689a72f05c78 (diff) | |
download | u-boot-2b5e7108594d4e100c88f44353d1fed6456d6471.zip u-boot-2b5e7108594d4e100c88f44353d1fed6456d6471.tar.gz u-boot-2b5e7108594d4e100c88f44353d1fed6456d6471.tar.bz2 |
test: fix pylint error in u_boot_console_exec_attach.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_exec_attach.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/test/py/u_boot_console_exec_attach.py b/test/py/u_boot_console_exec_attach.py index 27834b5..8dd8cc1 100644 --- a/test/py/u_boot_console_exec_attach.py +++ b/test/py/u_boot_console_exec_attach.py @@ -2,8 +2,10 @@ # Copyright (c) 2015 Stephen Warren # Copyright (c) 2015-2016, NVIDIA CORPORATION. All rights reserved. -# Logic to interact with U-Boot running on real hardware, typically via a -# physical serial port. +""" +Logic to interact with U-Boot running on real hardware, typically via a +physical serial port. +""" import sys from u_boot_spawn import Spawn |