r"""Return a list of the child `.Artist`\s.
(self)
| 334 | return [c for c in self._children if c.get_visible()] |
| 335 | |
| 336 | def get_children(self): |
| 337 | r"""Return a list of the child `.Artist`\s.""" |
| 338 | return self._children |
| 339 | |
| 340 | def _get_bbox_and_child_offsets(self, renderer): |
| 341 | """ |
no outgoing calls
no test coverage detected