(self)
| 1437 | # self.arrow_patch is currently not checked as this can be a line - JJ |
| 1438 | |
| 1439 | def get_children(self): |
| 1440 | children = [self.offsetbox, self.patch] |
| 1441 | if self.arrow_patch: |
| 1442 | children.append(self.arrow_patch) |
| 1443 | return children |
| 1444 | |
| 1445 | def set_figure(self, fig): |
| 1446 | if self.arrow_patch is not None: |
no outgoing calls
no test coverage detected