(
cls, other: Optional[ColumnElement[Any]]
)
| 2704 | |
| 2705 | @classmethod |
| 2706 | def _ifnone( |
| 2707 | cls, other: Optional[ColumnElement[Any]] |
| 2708 | ) -> ColumnElement[Any]: |
| 2709 | if other is None: |
| 2710 | return cls._instance() |
| 2711 | else: |
| 2712 | return other |
| 2713 | |
| 2714 | @classmethod |
| 2715 | def _instance(cls) -> True_: |