Resume the animation.
(self)
| 1410 | artist.set_animated(False) |
| 1411 | |
| 1412 | def resume(self): |
| 1413 | """Resume the animation.""" |
| 1414 | self.event_source.start() |
| 1415 | if self._blit: |
| 1416 | for artist in self._drawn_artists: |
| 1417 | artist.set_animated(True) |
| 1418 | |
| 1419 | |
| 1420 | class TimedAnimation(Animation): |
no test coverage detected