Remove the handles artist from the figure.
(self)
| 3180 | artist.set_animated(value) |
| 3181 | |
| 3182 | def remove(self): |
| 3183 | """Remove the handles artist from the figure.""" |
| 3184 | for artist in self._artists: |
| 3185 | artist.remove() |
| 3186 | |
| 3187 | def closest(self, x, y): |
| 3188 | """ |
no outgoing calls
no test coverage detected