(self, shape)
| 959 | portrait, landscape = range(2) |
| 960 | |
| 961 | def swap_if_landscape(self, shape): |
| 962 | return shape[::-1] if self.name == "landscape" else shape |
| 963 | |
| 964 | |
| 965 | class FigureCanvasPS(FigureCanvasBase): |
no outgoing calls
no test coverage detected