(cls: Type[Any])
| 2184 | DeclarativeMeta, DeclarativeBase, DeclarativeAttributeIntercept |
| 2185 | ) |
| 2186 | def _inspect_decl_meta(cls: Type[Any]) -> Optional[Mapper[Any]]: |
| 2187 | mp: Optional[Mapper[Any]] = _inspect_mapped_class(cls) |
| 2188 | if mp is None: |
| 2189 | if _DeferredDeclarativeConfig.has_cls(cls): |
| 2190 | _DeferredDeclarativeConfig.raise_unmapped_for_cls(cls) |
| 2191 | return mp |
| 2192 | |
| 2193 | |
| 2194 | @compat_typing.dataclass_transform( |
nothing calls this directly
no test coverage detected