(
self,
op: operators.OperatorType,
*other: Any,
**kwargs: Any,
)
| 1588 | ) from err |
| 1589 | |
| 1590 | def operate( |
| 1591 | self, |
| 1592 | op: operators.OperatorType, |
| 1593 | *other: Any, |
| 1594 | **kwargs: Any, |
| 1595 | ) -> ColumnElement[Any]: |
| 1596 | return op(self.comparator, *other, **kwargs) # type: ignore[no-any-return] # noqa: E501 |
| 1597 | |
| 1598 | def reverse_operate( |
| 1599 | self, op: operators.OperatorType, other: Any, **kwargs: Any |