* upgrade pydantic Signed-off-by: Jess Frazelle <github@jessfraz.com> * updates Signed-off-by: Jess Frazelle <github@jessfraz.com> * update other deps Signed-off-by: Jess Frazelle <github@jessfraz.com> * update other deps Signed-off-by: Jess Frazelle <github@jessfraz.com> * ruff Signed-off-by: Jess Frazelle <github@jessfraz.com> * bump more deps Signed-off-by: Jess Frazelle <github@jessfraz.com> * update Signed-off-by: Jess Frazelle <github@jessfraz.com> * format Signed-off-by: Jess Frazelle <github@jessfraz.com> * bump Signed-off-by: Jess Frazelle <github@jessfraz.com> --------- Signed-off-by: Jess Frazelle <github@jessfraz.com>
15 lines
365 B
Python
15 lines
365 B
Python
from pydantic import BaseModel, ConfigDict
|
|
|
|
from ..models.modeling_cmd import ModelingCmd
|
|
from ..models.modeling_cmd_id import ModelingCmdId
|
|
|
|
|
|
class ModelingCmdReq(BaseModel):
|
|
"""A graphics command submitted to the KittyCAD engine via the Modeling API."""
|
|
|
|
cmd: ModelingCmd
|
|
|
|
cmd_id: ModelingCmdId
|
|
|
|
model_config = ConfigDict(protected_namespaces=())
|