(
state: InstanceState[_O],
ctx: Union[object, QueryContext, UOWTransaction],
attrs: Iterable[Any],
)
| 527 | val._parents[state] = key |
| 528 | |
| 529 | def load_attrs( |
| 530 | state: InstanceState[_O], |
| 531 | ctx: Union[object, QueryContext, UOWTransaction], |
| 532 | attrs: Iterable[Any], |
| 533 | ) -> None: |
| 534 | if not attrs or listen_keys.intersection(attrs): |
| 535 | load(state) |
| 536 | |
| 537 | def set_( |
| 538 | target: InstanceState[_O], |
nothing calls this directly
no test coverage detected