got further

Signed-off-by: Jess Frazelle <github@jessfraz.com>
This commit is contained in:
Jess Frazelle
2023-11-28 15:17:44 -08:00
parent 373b5ef4ae
commit 058b4dc40a
76 changed files with 1478 additions and 752 deletions

View File

@ -47,15 +47,19 @@ class System:
forward: Union[Unset, AxisDirectionPair]
if isinstance(_forward, Unset):
forward = UNSET
if _forward is None:
forward = UNSET
else:
forward = _forward # type: ignore[arg-type]
forward = AxisDirectionPair.from_dict(_forward)
_up = d.pop("up", UNSET)
up: Union[Unset, AxisDirectionPair]
if isinstance(_up, Unset):
up = UNSET
if _up is None:
up = UNSET
else:
up = _up # type: ignore[arg-type]
up = AxisDirectionPair.from_dict(_up)
system = cls(
forward=forward,