r"""Return the list of `~.lines.Line2D`\s in the legend.
(self)
| 1014 | return self.legendPatch |
| 1015 | |
| 1016 | def get_lines(self): |
| 1017 | r"""Return the list of `~.lines.Line2D`\s in the legend.""" |
| 1018 | return [h for h in self.legend_handles if isinstance(h, Line2D)] |
| 1019 | |
| 1020 | def get_patches(self): |
| 1021 | r"""Return the list of `~.patches.Patch`\s in the legend.""" |
no outgoing calls
no test coverage detected