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:
authorCampbell Barton <ideasman42@gmail.com>2012-09-05 00:26:42 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-09-05 00:26:42 +0400
commitdba5ef3ba88d06c1927872bf4b97e22d0e750546 (patch)
tree55400b4d07fb9b3996da50a080287ccc61c40789 /source/tests
parent1d4316f35fcf2f4b9ed73b648422f4e36a071881 (diff)
code cleanup: python - pass multiple args to string startswith() / endswith() functions rather than calling multiple times.
Diffstat (limited to 'source/tests')
-rw-r--r--source/tests/pep8.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/tests/pep8.py b/source/tests/pep8.py
index d12397ea81d..ccaaeb7c0cd 100644
--- a/source/tests/pep8.py
+++ b/source/tests/pep8.py
@@ -43,7 +43,7 @@ FORCE_PEP8_ALL = False
def file_list_py(path):
for dirpath, dirnames, filenames in os.walk(path):
for filename in filenames:
- if filename.endswith(".py") or filename.endswith(".cfg"):
+ if filename.endswith((".py", ".cfg")):
yield os.path.join(dirpath, filename)