pydantic cleanup

Signed-off-by: Jess Frazelle <github@jessfraz.com>
This commit is contained in:
Jess Frazelle
2024-01-06 18:32:21 -08:00
parent b233f94a24
commit 8d476bbec6
140 changed files with 1122 additions and 540 deletions

View File

@ -1,6 +1,6 @@
from typing import Literal, Union
from pydantic import BaseModel, Field, RootModel
from pydantic import BaseModel, ConfigDict, Field, RootModel
from typing_extensions import Annotated
@ -10,6 +10,8 @@ class default_scene(BaseModel):
type: Literal["default_scene"] = "default_scene"
model_config = ConfigDict(protected_namespaces=())
class scene_by_index(BaseModel):
"""Visit the indexed scene."""
@ -18,6 +20,8 @@ class scene_by_index(BaseModel):
type: Literal["scene_by_index"] = "scene_by_index"
model_config = ConfigDict(protected_namespaces=())
class scene_by_name(BaseModel):
"""Visit the first scene with the given name."""
@ -26,6 +30,8 @@ class scene_by_name(BaseModel):
type: Literal["scene_by_name"] = "scene_by_name"
model_config = ConfigDict(protected_namespaces=())
class mesh_by_index(BaseModel):
"""Visit the indexed mesh."""
@ -34,6 +40,8 @@ class mesh_by_index(BaseModel):
type: Literal["mesh_by_index"] = "mesh_by_index"
model_config = ConfigDict(protected_namespaces=())
class mesh_by_name(BaseModel):
"""Visit the first mesh with the given name."""
@ -42,6 +50,8 @@ class mesh_by_name(BaseModel):
type: Literal["mesh_by_name"] = "mesh_by_name"
model_config = ConfigDict(protected_namespaces=())
Selection = RootModel[
Annotated[