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