Signed-off-by: Jess Frazelle <github@jessfraz.com>
This commit is contained in:
Jess Frazelle
2023-11-28 14:29:16 -08:00
parent 6b8807feea
commit 373b5ef4ae
123 changed files with 1858 additions and 1955 deletions

View File

@ -5,7 +5,7 @@ import attr
from ..models.point3d import Point3d
from ..types import UNSET, Unset
CR = TypeVar("CR", bound="CurveGetEndPoints")
DI = TypeVar("DI", bound="CurveGetEndPoints")
@attr.s(auto_attribs=True)
@ -34,7 +34,7 @@ class CurveGetEndPoints:
return field_dict
@classmethod
def from_dict(cls: Type[CR], src_dict: Dict[str, Any]) -> CR:
def from_dict(cls: Type[DI], src_dict: Dict[str, Any]) -> DI:
d = src_dict.copy()
_end = d.pop("end", UNSET)
end: Union[Unset, Point3d]