(self, *args, **kwargs)
| 148 | |
| 149 | @functools.wraps(_AxesBase.set_xticks) |
| 150 | def set_xticks(self, *args, **kwargs): |
| 151 | if self._orientation == "y": |
| 152 | raise TypeError("Cannot set xticks on a secondary y-axis") |
| 153 | ret = super().set_xticks(*args, **kwargs) |
| 154 | self._ticks_set = True |
| 155 | return ret |
| 156 | |
| 157 | @functools.wraps(_AxesBase.set_yticks) |
| 158 | def set_yticks(self, *args, **kwargs): |
no outgoing calls