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>2018-11-26 01:26:15 +0300
committerCampbell Barton <ideasman42@gmail.com>2018-11-26 01:26:15 +0300
commitcb66a28d821906957a8f092b999f531e4a3a4571 (patch)
tree6faf2c490f77e20f87a12bec9f16d505f3ff8356 /tests/python/rna_info_dump.py
parent24c383cfc4762c29527f70bbcf32a553ab035af2 (diff)
Cleanup: unused vars, imports
Diffstat (limited to 'tests/python/rna_info_dump.py')
-rw-r--r--tests/python/rna_info_dump.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/python/rna_info_dump.py b/tests/python/rna_info_dump.py
index da228e52652..01cbe8d290b 100644
--- a/tests/python/rna_info_dump.py
+++ b/tests/python/rna_info_dump.py
@@ -71,7 +71,7 @@ def api_dump(use_properties=True, use_functions=True):
def dump_funcs():
data = []
- for struct_id, v in sorted(struct.items()):
+ for _struct_id, v in sorted(struct.items()):
struct_id_str = struct_full_id(v)
funcs = [(func.identifier, func) for func in v.functions]
@@ -90,7 +90,7 @@ def api_dump(use_properties=True, use_functions=True):
def dump_props():
data = []
- for struct_id, v in sorted(struct.items()):
+ for _struct_id, v in sorted(struct.items()):
struct_id_str = struct_full_id(v)
props = [(prop.identifier, prop) for prop in v.properties]