Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 664ab81 commit c100485Copy full SHA for c100485
lib/matplotlib/animation.py
@@ -1723,7 +1723,8 @@ def _draw_frame(self, framedata):
1723
1724
# Call the func with framedata and args. If blitting is desired,
1725
# func needs to return a sequence of any artists that were modified.
1726
- self._drawn_artists = sorted(self._func(framedata, *self._args), key=lambda x: x.get_zorder())
+ self._drawn_artists = sorted(self._func(framedata, *self._args),
1727
+ key=lambda x: x.get_zorder())
1728
if self._blit:
1729
if self._drawn_artists is None:
1730
raise RuntimeError('The animation function must return a '
0 commit comments