(self)
| 554 | self.num2 = num2 |
| 555 | |
| 556 | def __repr__(self): |
| 557 | return (f"{self.get_gridspec()}[" |
| 558 | f"{self.rowspan.start}:{self.rowspan.stop}, " |
| 559 | f"{self.colspan.start}:{self.colspan.stop}]") |
| 560 | |
| 561 | @staticmethod |
| 562 | def _from_subplot_args(figure, args): |
nothing calls this directly
no test coverage detected