(model: type[BaseModel])
| 412 | |
| 413 | @lru_cache |
| 414 | def get_cached_model_fields(model: type[BaseModel]) -> list[ModelField]: |
| 415 | return get_model_fields(model) |
| 416 | |
| 417 | |
| 418 | # Duplicate of several schema functions from Pydantic v1 to make them compatible with |
no test coverage detected
searching dependent graphs…