(
self,
op: operators.OperatorType,
*other: Any,
**kwargs: Any,
)
| 1526 | ) from err |
| 1527 | |
| 1528 | def operate( |
| 1529 | self, |
| 1530 | op: operators.OperatorType, |
| 1531 | *other: Any, |
| 1532 | **kwargs: Any, |
| 1533 | ) -> ColumnElement[Any]: |
| 1534 | return op(self.comparator, *other, **kwargs) # type: ignore[no-any-return] # noqa: E501 |
| 1535 | |
| 1536 | def reverse_operate( |
| 1537 | self, op: operators.OperatorType, other: Any, **kwargs: Any |