(forwardref: ForwardRef, globalns: dict[str, Any])
| 29 | |
| 30 | |
| 31 | def evaluate_forwardref(forwardref: ForwardRef, globalns: dict[str, Any]) -> type: |
| 32 | return eval(str(forwardref), globalns) # type: ignore[no-any-return] |
| 33 | |
| 34 | |
| 35 | def assert_matches_model(model: type[BaseModelT], value: BaseModelT, *, path: list[str]) -> bool: |
no outgoing calls