Signed-off-by: Jess Frazelle <github@jessfraz.com>
This commit is contained in:
Jess Frazelle
2023-11-28 17:22:38 -08:00
parent 243ed3222a
commit d9d73522fd
72 changed files with 960 additions and 534 deletions

View File

@ -20,8 +20,10 @@ class PathSegmentInfo:
additional_properties: Dict[str, Any] = attr.ib(init=False, factory=dict)
def to_dict(self) -> Dict[str, Any]:
command: Union[Unset, PathCommand] = UNSET
if not isinstance(self.command, Unset):
command = self.command
command_id: Union[Unset, ModelingCmdId] = UNSET
if not isinstance(self.command_id, Unset):
command_id = self.command_id
relative = self.relative