From 69bf4e5e36754afbd3a42778e12613b77ae98023 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Sun, 17 Mar 2019 21:13:25 +1100 Subject: Cleanup: unused variables --- tests/python/pep8.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tests') diff --git a/tests/python/pep8.py b/tests/python/pep8.py index 78f0c82d00f..fde86892782 100644 --- a/tests/python/pep8.py +++ b/tests/python/pep8.py @@ -45,7 +45,7 @@ FORCE_PEP8_ALL = False def file_list_py(path): - for dirpath, dirnames, filenames in os.walk(path): + for dirpath, _dirnames, filenames in os.walk(path): for filename in filenames: if filename.endswith((".py", ".cfg")): yield os.path.join(dirpath, filename) -- cgit v1.2.3