(self, other)
| 626 | return self._apply_operator(operator.ge, other) |
| 627 | |
| 628 | def __gt__(self, other): |
| 629 | other = other._transform if isinstance(other, Interactive) else 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 |
nothing calls this directly
no test coverage detected