commit: 986459c70755783250dd08d0766d3c426f392372
parent 6468ff7ff176e24f3f6cccb07bdfb7fd13e7adf4
Author: rick-masters <grick23@gmail.com>
Date: Mon, 3 Apr 2023 18:28:17 +0000
Remove unused variable.
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git 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: