[bindings] re-shape some keyword-only signatures
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user