From cb66a28d821906957a8f092b999f531e4a3a4571 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Mon, 26 Nov 2018 09:26:15 +1100 Subject: Cleanup: unused vars, imports --- tests/python/rna_info_dump.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tests/python/rna_info_dump.py') 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] -- cgit v1.2.3