(self, other)
| 654 | return self._apply_operator(operator.ne, other) |
| 655 | |
| 656 | def __or__(self, other): |
| 657 | other = other._transform if isinstance(other, Interactive) else other |
| 658 | return self._apply_operator(operator.or_, other) |
| 659 | |
| 660 | def __rshift__(self, other): |
| 661 | other = other._transform if isinstance(other, Interactive) else other |
nothing calls this directly
no test coverage detected