(
self, op: OperatorType, other: Any, **kwargs: Any
)
| 1872 | return op(self.expression, *other, **kwargs) |
| 1873 | |
| 1874 | def reverse_operate( |
| 1875 | self, op: OperatorType, other: Any, **kwargs: Any |
| 1876 | ) -> ColumnElement[Any]: |
| 1877 | return op(other, self.expression, **kwargs) # type: ignore |