From 58317175cda2686407f575264427d1d36503c2db Mon Sep 17 00:00:00 2001 From: lojack5 <1458329+lojack5@users.noreply.github.com> Date: Sun, 12 Jan 2025 03:27:53 -0700 Subject: [PATCH] Correct incorrect remove of `wx` from argument names --- etgtools/tweaker_tools.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/etgtools/tweaker_tools.py b/etgtools/tweaker_tools.py index 8dfd3745..ff52b1b7 100644 --- a/etgtools/tweaker_tools.py +++ b/etgtools/tweaker_tools.py @@ -162,7 +162,7 @@ class FixWxPrefix(object): 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.