(state: InstanceState[Any], attribute: str)
| 378 | |
| 379 | |
| 380 | def state_attribute_str(state: InstanceState[Any], attribute: str) -> str: |
| 381 | return state_str(state) + "." + attribute |
| 382 | |
| 383 | |
| 384 | def object_mapper(instance: _T) -> Mapper[_T]: |
nothing calls this directly
no test coverage detected