test: [refactor] Fix F841 flake8

This commit is contained in:
MarcoFalke
2024-08-27 14:14:45 +02:00
parent 444421db69
commit faaf3e53f0
8 changed files with 28 additions and 28 deletions

View File

@@ -164,7 +164,7 @@ def main():
'Failed to run "%s" - %s"' % (" ".join(command), e.strerror)
)
stdout, stderr = p.communicate()
stdout, _stderr = p.communicate()
if p.returncode != 0:
sys.exit(p.returncode)