(
cls,
registry: _RegistryType,
cls_: Type[_O],
table: Optional[FromClause],
mapper_kw: _MapperKwArgs,
)
| 302 | |
| 303 | @classmethod |
| 304 | def _mapper( |
| 305 | cls, |
| 306 | registry: _RegistryType, |
| 307 | cls_: Type[_O], |
| 308 | table: Optional[FromClause], |
| 309 | mapper_kw: _MapperKwArgs, |
| 310 | ) -> Mapper[_O]: |
| 311 | _ImperativeMapperConfig(registry, cls_, table, mapper_kw) |
| 312 | return cast(class="st">"MappedClassProtocol[_O]", cls_).__mapper__ |
| 313 | |
| 314 | |
| 315 | class _MapperConfig(_ORMClassConfigurator): |
no test coverage detected