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.py7
1 files changed, 3 insertions, 4 deletions
diff --git a/tests/python/pep8.py b/tests/python/pep8.py
index ebf2c5eabb7..ccc2dddbbd9 100644
--- a/tests/python/pep8.py
+++ b/tests/python/pep8.py
@@ -93,7 +93,7 @@ def check_files_flake8(files):
# times types are compared,
# I rather keep them specific
"E721",
- )
+ )
for f, pep8_type in files:
@@ -129,10 +129,10 @@ def check_files_pylint(files):
"C0413," # import should be placed at the top
"W0613," # unused argument, may add this back
# but happens a lot for 'context' for eg.
- "W0232," # class has no __init__, Operator/Panel/Menu etc
+ "W0232," # class has no __init__, Operator/Panel/Menu etc
"W0142," # Used * or ** magic
# even needed in some cases
- "R0902," # Too many instance attributes
+ "R0902," # Too many instance attributes
"R0903," # Too many statements
"R0911," # Too many return statements
"R0912," # Too many branches
@@ -204,6 +204,5 @@ def main():
print("Skipping pylint checks (command not found)")
-
if __name__ == "__main__":
main()