(return_none_on)
| 2024 | y: Optional[int] |
| 2025 | |
| 2026 | def go(return_none_on): |
| 2027 | class Edge(decl_base): |
| 2028 | __tablename__ = "edge" |
| 2029 | id: Mapped[int] = mapped_column(primary_key=True) |
| 2030 | start = composite(Point, return_none_on=return_none_on) |
| 2031 | |
| 2032 | return Point, Edge |
| 2033 | |
| 2034 | return go |
| 2035 |
nothing calls this directly
no test coverage detected