(self, axes)
| 125 | |
| 126 | class _ColorbarSpine(mspines.Spine): |
| 127 | def __init__(self, axes): |
| 128 | self._ax = axes |
| 129 | super().__init__(axes, 'colorbar', mpath.Path(np.empty((0, 2)))) |
| 130 | mpatches.Patch.set_transform(self, axes.transAxes) |
| 131 | |
| 132 | def get_window_extent(self, renderer=None): |
| 133 | # This Spine has no Axis associated with it, and doesn't need to adjust |
nothing calls this directly
no test coverage detected