File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -1184,7 +1184,7 @@ class ArtistAnimation(TimedAnimation):
1184
1184
Before calling this function, all plotting should have taken place
1185
1185
and the relevant artists saved.
1186
1186
1187
- frame_info is a list, with each list entry a collection of artists that
1187
+ *artists* is a list, with each list entry a collection of artists that
1188
1188
represent what needs to be enabled on each frame. These will be disabled
1189
1189
for other frames.
1190
1190
'''
@@ -1205,8 +1205,8 @@ def _init_draw(self):
1205
1205
artist .set_visible (False )
1206
1206
artist .set_animated (self ._blit )
1207
1207
# Assemble a list of unique figures that need flushing
1208
- if artist .axes . figure not in figs :
1209
- figs .add (artist .axes . figure )
1208
+ if artist .get_figure () not in figs :
1209
+ figs .add (artist .get_figure () )
1210
1210
1211
1211
# Flush the needed figures
1212
1212
for fig in figs :
You can’t perform that action at this time.
0 commit comments