(self, other)
| 723 | return self._apply_operator(operator.truediv, other, reverse=True) |
| 724 | |
| 725 | def __getitem__(self, other): |
| 726 | other = other._transform if isinstance(other, Interactive) else other |
| 727 | return self._apply_operator(operator.getitem, other) |
| 728 | |
| 729 | def _plot(self, *args, **kwargs): |
| 730 | # TODO: Seems totally unused to me, as self._plot is set to a boolean in __init__ |
nothing calls this directly
no test coverage detected