We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5f722f7 commit ad8472dCopy full SHA for ad8472d
substratevm/mx.substratevm/mx_substratevm.py
@@ -2225,7 +2225,7 @@ def _get_libcontainer_files():
2225
libcontainer_project = mx.project("com.oracle.svm.native.libcontainer")
2226
libcontainer_dir = libcontainer_project.dir
2227
for src_dir in libcontainer_project.source_dirs():
2228
- for path, subdirs, files in os.walk(src_dir):
+ for path, _, files in os.walk(src_dir):
2229
for name in files:
2230
abs_path = pathlib.PurePath(path, name)
2231
rel_path = abs_path.relative_to(libcontainer_dir)
0 commit comments