[bindings] re-shape some keyword-only signatures

This commit is contained in:
Frank Martinez
2025-09-26 09:29:30 -05:00
parent fca800baca
commit 8e51db4072
11 changed files with 40 additions and 23 deletions

View File

@@ -79,7 +79,7 @@ class Vector(PyObjectBase):
# fmt: off
@overload
def __init__(self, *, x: float = 0, y: float = 0, z: float = 0) -> None: ...
def __init__(self, x: float = 0, y: float = 0, z: float = 0) -> None: ...
@overload
def __init__(self, vector: "Vector") -> None: ...
@overload