(instance: _T)
| 426 | |
| 427 | @inspection._inspects(object) |
| 428 | def _inspect_mapped_object(instance: _T) -> Optional[InstanceState[_T]]: |
| 429 | try: |
| 430 | return instance_state(instance) |
| 431 | except (exc.UnmappedClassError,) + exc.NO_STATE: |
| 432 | return None |
| 433 | |
| 434 | |
| 435 | def _class_to_mapper( |
no test coverage detected