8000
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 cd0fe36 commit e7393d9Copy full SHA for e7393d9
lib/matplotlib/animation.py
@@ -1160,7 +1160,7 @@ def _init_draw(self):
1160
self._draw_frame(next(self.new_frame_seq()))
1161
else:
1162
self._drawn_artists = self._init_func()
1163
- if iterable(self._drawn_artists):
+ if self._blit:
1164
for a in self._drawn_artists:
1165
a.set_animated(self._blit)
1166
@@ -1175,6 +1175,6 @@ def _draw_frame(self, framedata):
1175
# Call the func with framedata and args. If blitting is desired,
1176
# func needs to return a sequence of any artists that were modified.
1177
self._drawn_artists = self._func(framedata, *self._args)
1178
1179
1180
0 commit comments