()
| 720 | return fixture_session().query(wp) |
| 721 | |
| 722 | def three(): |
| 723 | wp = with_polymorphic(Person, [Manager, Engineer]) |
| 724 | |
| 725 | return fixture_session().query(wp).filter(wp.name == "asdfo") |
| 726 | |
| 727 | def three_a(): |
| 728 | wp = with_polymorphic(Person, [Manager, Engineer], flat=True) |
nothing calls this directly
no test coverage detected