(self, *args, **kwargs)
| 681 | _tick_class = RadialTick |
| 682 | |
| 683 | def __init__(self, *args, **kwargs): |
| 684 | super().__init__(*args, **kwargs) |
| 685 | self.sticky_edges.y.append(0) |
| 686 | |
| 687 | def set_major_locator(self, locator): |
| 688 | if not isinstance(locator, RadialLocator): |