diff mbox series

[5/5] test: fix pylint error in u_boot_console_exec_attach.py

Message ID 20211122230149.9487-6-heinrich.schuchardt@canonical.com
State Accepted, archived
Commit 2b5e7108594d4e100c88f44353d1fed6456d6471
Delegated to: Tom Rini
Headers show
Series test: fix pylint warnings | expand

Commit Message

Heinrich Schuchardt Nov. 22, 2021, 11:01 p.m. UTC
* provide module docstring

Signed-off-by: Heinrich Schuchardt <heinrich.schuchardt@canonical.com>
---
 test/py/u_boot_console_exec_attach.py | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

Comments

Simon Glass Nov. 25, 2021, 12:13 a.m. UTC | #1
On Mon, 22 Nov 2021 at 16:02, Heinrich Schuchardt
<heinrich.schuchardt@canonical.com> wrote:
>
> * provide module docstring
>
> Signed-off-by: Heinrich Schuchardt <heinrich.schuchardt@canonical.com>
> ---
>  test/py/u_boot_console_exec_attach.py | 6 ++++--
>  1 file changed, 4 insertions(+), 2 deletions(-)

Reviewed-by: Simon Glass <sjg@chromium.org>
diff mbox series

Patch

diff --git a/test/py/u_boot_console_exec_attach.py b/test/py/u_boot_console_exec_attach.py
index 27834b55cd..8dd8cc1230 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