diff mbox series

[scarthgap,master,meta-xilinx-core] boot-jtag.py: Remove unused 'yaml' import

Message ID 20240710055627.2917807-1-jiaying.song.cn@windriver.com
State New
Headers show
Series [scarthgap,master,meta-xilinx-core] boot-jtag.py: Remove unused 'yaml' import | expand

Commit Message

Song, Jiaying (CN) July 10, 2024, 5:56 a.m. UTC
From: Jiaying Song <jiaying.song.cn@windriver.com>

Due to the 'yaml' was not actually used in bootjtag.py and the following
error was reported during construction, the 'import yaml' statement will
be deleted.

Error logļ¼š
File "/layers/meta-xilinx/meta-xilinx-core/lib/devtool/boot-jtag.py", line 14, in <module>\n    import yaml\nModuleNotFoundError: No module named \'yaml\'\n')

Signed-off-by: Jiaying Song <jiaying.song.cn@windriver.com>
---
 meta-xilinx-core/lib/devtool/boot-jtag.py | 1 -
 1 file changed, 1 deletion(-)
diff mbox series

Patch

diff --git a/meta-xilinx-core/lib/devtool/boot-jtag.py b/meta-xilinx-core/lib/devtool/boot-jtag.py
index 53d70262..51eb0dd4 100644
--- a/meta-xilinx-core/lib/devtool/boot-jtag.py
+++ b/meta-xilinx-core/lib/devtool/boot-jtag.py
@@ -11,7 +11,6 @@  import os
 import logging
 import argparse
 from devtool import setup_tinfoil, parse_recipe, DevtoolError
-import yaml
 import sys
 import glob