summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDarryl Green <darryl.green@arm.com>2019-04-12 15:18:02 +0100
committerDarryl Green <darryl.green@arm.com>2019-04-18 11:47:28 +0100
commit03c5e856e87508891e9afa5b165fff31428b40e7 (patch)
treef20082acb9ee5f9c331702c2e5b2a85ce3bc2781
parent3c9e7d23b1f62785566872276110ace98931715f (diff)
Start unused variable with underscore
-rwxr-xr-xscripts/abi_check.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/abi_check.py b/scripts/abi_check.py
index 0bbb9f87..af293cd2 100755
--- a/scripts/abi_check.py
+++ b/scripts/abi_check.py
@@ -178,7 +178,7 @@ class AbiChecker(object):
)
make_output, _ = make_process.communicate()
self.log.debug(make_output.decode("utf-8"))
- for root, dirs, files in os.walk(git_worktree_path): # pylint: disable=unused-variable
+ for root, _dirs, files in os.walk(git_worktree_path):
for file in fnmatch.filter(files, "*.so"):
version.modules[os.path.splitext(file)[0]] = (
os.path.join(root, file)