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>2019-01-30 01:03:37 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-01-30 01:06:44 +0300
commit7894d6c6f1982f58dc479f3f01dd79afb6f5c1a0 (patch)
tree0a11fe007ad1f9c591fbf95f5495e8d9d10401ad /release/scripts/modules/rna_info.py
parent7d91ef04880b57d92c97c365e41aebbb03686ce3 (diff)
Cleanup: line length
Diffstat (limited to 'release/scripts/modules/rna_info.py')
-rw-r--r--release/scripts/modules/rna_info.py7
1 files changed, 6 insertions, 1 deletions
diff --git a/release/scripts/modules/rna_info.py b/release/scripts/modules/rna_info.py
index 490aae1c640..4a2b1085143 100644
--- a/release/scripts/modules/rna_info.py
+++ b/release/scripts/modules/rna_info.py
@@ -747,7 +747,12 @@ def BuildRNAInfo():
# for rna_info in InfoStructRNA.global_lookup.values():
# print(rna_info)
- return InfoStructRNA.global_lookup, InfoFunctionRNA.global_lookup, InfoOperatorRNA.global_lookup, InfoPropertyRNA.global_lookup
+ return (
+ InfoStructRNA.global_lookup,
+ InfoFunctionRNA.global_lookup,
+ InfoOperatorRNA.global_lookup,
+ InfoPropertyRNA.global_lookup,
+ )
def main():