| 42 | description: str | None = None |
| 43 | |
| 44 | class BlogPost(BaseModel): |
| 45 | title: Annotated[str, StringConstraints(pattern=r'[A-Za-z0-9]+')] |
| 46 | content: str |
| 47 | author: User |
| 48 | published: bool = False |
| 49 | |
| 50 | class Website(BaseModel): |
| 51 | name: str |
nothing calls this directly
no test coverage detected