(cls)
| 2683 | class Mixin: |
| 2684 | @declared_attr |
| 2685 | def children(cls): |
| 2686 | return association_proxy("_children", "value") |
| 2687 | |
| 2688 | # 1. build parent, Mixin.children gets invoked, we add |
| 2689 | # Parent.children |
nothing calls this directly
no test coverage detected