From 986459c70755783250dd08d0766d3c426f392372 Mon Sep 17 00:00:00 2001 From: rick-masters Date: Mon, 3 Apr 2023 18:28:17 +0000 Subject: [PATCH] Remove unused variable. --- sysa.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sysa.py b/sysa.py index 50772d7..ef0d1e6 100755 --- a/sysa.py +++ b/sysa.py @@ -110,7 +110,7 @@ class SysA(SysGeneral): def add_fiwix_files(self, file_list_path, dirpath): """Add files to the list to populate Fiwix file system""" - for root, dirs, filepaths in os.walk(dirpath): + for root, _, filepaths in os.walk(dirpath): if 'stage0-posix' in root: continue with open(file_list_path, 'a', encoding="utf-8") as file_list: