Skip to content

Commit

Permalink
fix var name
Browse files Browse the repository at this point in the history
  • Loading branch information
jpfeuffer authored Nov 7, 2024
1 parent 0721ad6 commit ab6d4d3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion autowrap/CodeGenerator.py
Original file line number Diff line number Diff line change
Expand Up @@ -1738,7 +1738,7 @@ def create_special_setitem_method(self, mdcl):
raise Exception("setitem method currently only supports a single argument.")

# TODO make sure it is a basic type (class or builtin, no list/dict)
_, ctype = mdcl.arguments[0]
_, ctype_in = mdcl.arguments[0]
in_converter = self.cr.get(ctype_in)
in_t_py = in_converter.matching_python_type_full(ctype_in)

Expand Down

0 comments on commit ab6d4d3

Please sign in to comment.