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