Remove unused variable.

This commit is contained in:
rick-masters 2023-04-03 18:28:17 +00:00
parent 6468ff7ff1
commit 986459c707
1 changed files with 1 additions and 1 deletions

View File

@ -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: