Skip to content

Commit

Permalink
Correct incorrect remove of wx from argument names
Browse files Browse the repository at this point in the history
  • Loading branch information
lojack5 committed Jan 12, 2025
1 parent 2d1cc85 commit fdf4c62
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion etgtools/tweaker_tools.py
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ def cleanName(self, name: str, is_expression: bool = False, fix_wx: bool = True)
if fix_wx:
return self.fixWxPrefix(name, True)
else:
return removeWxPrefix(name)
return name

def cleanType(self, type_name: str) -> str:
"""Process a C++ type name for use as a type annotation in Python code.
Expand Down

0 comments on commit fdf4c62

Please sign in to comment.