Skip to content

Commit

Permalink
Merge pull request #44 from tkdchen/fix-unused-var
Browse files Browse the repository at this point in the history
Fix unused variable
  • Loading branch information
tkdchen authored Mar 19, 2024
2 parents 68b2bfe + 9eea23b commit e66f5af
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source-container-build/app/source_build.py
Original file line number Diff line number Diff line change
Expand Up @@ -320,7 +320,7 @@ def gather_prefetched_sources(

def _find_prefetch_source_archives():
guess_mime = filetype.guess_mime
for root, dirs, files in os.walk(cachi2_output_dir):
for root, _, files in os.walk(cachi2_output_dir):
for filename in files:
mimetype = guess_mime(os.path.join(root, filename))
if mimetype and mimetype in ARCHIVE_MIMETYPES:
Expand Down

0 comments on commit e66f5af

Please sign in to comment.