Skip to content

Commit 672a2dc

Browse files
committed
Remove the leading underscores from ParamName.prefix
1 parent b7867ac commit 672a2dc

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/mcputil/func.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ class ParamName(str):
1010
This is mainly used to handle parameter names that are Python keywords (e.g. "from").
1111
"""
1212

13-
prefix = "__MCPUTIL__"
13+
prefix = "MCPUTIL__"
1414

1515
def unwrap(self) -> str:
1616
if self.startswith(self.prefix):

0 commit comments

Comments
 (0)