(self, *args, **kwargs)
| 156 | |
| 157 | @functools.wraps(_AxesBase.set_yticks) |
| 158 | def set_yticks(self, *args, **kwargs): |
| 159 | if self._orientation == "x": |
| 160 | raise TypeError("Cannot set yticks on a secondary x-axis") |
| 161 | ret = super().set_yticks(*args, **kwargs) |
| 162 | self._ticks_set = True |
| 163 | return ret |
| 164 | |
| 165 | @functools.wraps(Axis.set_ticks) |
| 166 | def set_ticks(self, *args, **kwargs): |
no outgoing calls