(self, *args, orientation, **kwargs)
| 13 | |
| 14 | class CbarAxesBase: |
| 15 | def __init__(self, *args, orientation, **kwargs): |
| 16 | self.orientation = orientation |
| 17 | super().__init__(*args, **kwargs) |
| 18 | |
| 19 | def colorbar(self, mappable, **kwargs): |
| 20 | return self.get_figure(root=False).colorbar( |