(
class_: Type[_O],
)
| 1545 | |
| 1546 | @inspection._inspects(GenericAlias) |
| 1547 | def _inspect_generic_alias( |
| 1548 | class_: Type[_O], |
| 1549 | ) -> Optional[Mapper[_O]]: |
| 1550 | origin = cast("Type[_O]", get_origin(class_)) |
| 1551 | return _inspect_mc(origin) |
| 1552 | |
| 1553 | |
| 1554 | @inspection._self_inspects |
nothing calls this directly
no test coverage detected