From c536791f36b7b175a188b615ffcc5e366b833da4 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Wed, 18 May 2022 17:40:19 +1000 Subject: Cleanup: remove unused variables, redundant assignments --- doc/python_api/sphinx_doc_gen.py | 2 -- 1 file changed, 2 deletions(-) (limited to 'doc') diff --git a/doc/python_api/sphinx_doc_gen.py b/doc/python_api/sphinx_doc_gen.py index 1c52bb3e57d..1949d77a50b 100644 --- a/doc/python_api/sphinx_doc_gen.py +++ b/doc/python_api/sphinx_doc_gen.py @@ -1210,7 +1210,6 @@ def pycontext2sphinx(basepath): for ctx_str, ctx_members in sorted(context_member_map.items()): subsection = "%s Context" % ctx_str.split("_")[0].title() fw("\n%s\n%s\n\n" % (subsection, (len(subsection) * '-'))) - i = 0 for member in ctx_members: unique_all_len = len(unique) unique.add(member) @@ -1231,7 +1230,6 @@ def pycontext2sphinx(basepath): "Error: context key %r not found in context_type_map; update %s" % (member, __file__)) from None fw(" :type: %s :class:`bpy.types.%s`\n\n" % ("sequence of " if is_seq else "", member_type)) - i += 1 # generate typemap... # for member in sorted(unique_context_strings): -- cgit v1.2.3