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