aboutsummaryrefslogtreecommitdiff
path: root/contrib
diff options
context:
space:
mode:
authorMarcoFalke <*~=`'#}+{/-|&$^_@721217.xyz>2024-08-27 14:14:45 +0200
committerMarcoFalke <*~=`'#}+{/-|&$^_@721217.xyz>2024-08-29 07:01:54 +0200
commitfaaf3e53f09c73278e36674db0af14a262f0bd94 (patch)
treee81089158c9fbd18bce31764663527f3b928ab95 /contrib
parent444421db69539b74077306b6d0cb23e82afeb891 (diff)
test: [refactor] Fix F841 flake8
Diffstat (limited to 'contrib')
-rwxr-xr-xcontrib/devtools/clang-format-diff.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/devtools/clang-format-diff.py b/contrib/devtools/clang-format-diff.py
index e2b661d65d..30e804dbe2 100755
--- a/contrib/devtools/clang-format-diff.py
+++ b/contrib/devtools/clang-format-diff.py
@@ -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)