Files
kittycad.py/kittycad/models/move_path_pen.py

8 lines
187 B
Python
Raw Normal View History

from pydantic import BaseModel, ConfigDict
class MovePathPen(BaseModel):
"""The response from the `MovePathPen` endpoint."""
model_config = ConfigDict(protected_namespaces=())