r"""Return a list of the visible child `.Artist`\s.
(self)
| 330 | self.stale = True |
| 331 | |
| 332 | def get_visible_children(self): |
| 333 | r"""Return a list of the visible child `.Artist`\s.""" |
| 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.""" |
no test coverage detected