()
| 725 | return fixture_session().query(wp).filter(wp.name == "asdfo") |
| 726 | |
| 727 | def three_a(): |
| 728 | wp = with_polymorphic(Person, [Manager, Engineer], flat=True) |
| 729 | |
| 730 | return fixture_session().query(wp).filter(wp.name == "asdfo") |
| 731 | |
| 732 | def five(): |
| 733 | subq = ( |
nothing calls this directly
no test coverage detected