[bindings] Format with yapf (precommit will reformat)

This commit is contained in:
Frank Martinez
2025-10-07 12:07:42 -05:00
parent d4d7cabdc5
commit 0d0689341b
254 changed files with 885 additions and 311 deletions

View File

@@ -7,6 +7,7 @@ from TrimmedCurve import TrimmedCurve
from Geometry import Geom_Circle, Geom_Ellipse
from typing import overload
@export(
Father="TrimmedCurvePy",
PythonName="Part.Arc",
@@ -25,6 +26,9 @@ class Arc(TrimmedCurve):
"""
@overload
def __init__(self, circ: Geom_Circle, T: type = ...) -> None: ...
def __init__(self, circ: Geom_Circle, T: type = ...) -> None:
...
@overload
def __init__(self, circ: Geom_Ellipse, T: type = ...) -> None: ...
def __init__(self, circ: Geom_Ellipse, T: type = ...) -> None:
...