finish naming convention converter

This commit is contained in:
2023-11-29 21:35:15 +08:00
parent 88fe1519e3
commit 6944415912
2 changed files with 78 additions and 22 deletions

View File

@ -37,7 +37,7 @@ def clamp_int(v: int, min_val: int, max_val: int) -> int:
elif (v > max_val): return max_val
else: return v
def message_box(message: tuple[str], title: str, icon: str):
def message_box(message: tuple[str, ...], title: str, icon: str):
"""
Show a message box in Blender. Non-block mode.