Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2019-03-17 13:13:25 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-03-17 13:14:43 +0300
commit69bf4e5e36754afbd3a42778e12613b77ae98023 (patch)
tree0df83b1927037bf711881dbfb6ff6e95a901c511 /tests
parentad9addbf460f6053b8037a09ec9752d653269561 (diff)
Cleanup: unused variables
Diffstat (limited to 'tests')
-rw-r--r--tests/python/pep8.py2
1 files changed, 1 insertions, 1 deletions
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)