| 2688 | # 1. build parent, Mixin.children gets invoked, we add |
| 2689 | # Parent.children |
| 2690 | class Parent(Mixin, Base): |
| 2691 | __tablename__ = "parent" |
| 2692 | id = Column(Integer, primary_key=True) |
| 2693 | |
| 2694 | _children = relationship("Child") |
| 2695 | |
| 2696 | class Child(Base): |
| 2697 | __tablename__ = "child" |
nothing calls this directly
no test coverage detected