(self, other)
| 630 | return self._apply_operator(operator.gt, other) |
| 631 | |
| 632 | def __le__(self, other): |
| 633 | other = other._transform if isinstance(other, Interactive) else other |
| 634 | return self._apply_operator(operator.le, other) |
| 635 | |
| 636 | def __lt__(self, other): |
| 637 | other = other._transform if isinstance(other, Interactive) else other |
nothing calls this directly
no test coverage detected