(type_: _T)
| 747 | return cast(_T, model.__root__) |
| 748 | |
| 749 | def _create_pydantic_model(type_: _T) -> Type[RootModel[_T]]: |
| 750 | return RootModel[type_] # type: ignore |
| 751 | |
| 752 | |
| 753 | class FinalRequestOptionsInput(TypedDict, total=False): |
no outgoing calls
no test coverage detected