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
diff options
context:
space:
mode:
Diffstat (limited to 'tests/python/pep8.py')
-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)