8000 Merge pull request #2069 from jakevdp/anim_fix · matplotlib/matplotlib@5e2e0fb · GitHub
[go: up one dir, main page]

Skip to content

Commit 5e2e0fb

Browse files
committed
Merge pull request #2069 from jakevdp/anim_fix
BUG: pass kwargs to TimedAnimation
1 parent de2b77c commit 5e2e0fb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/matplotlib/animation.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -253,7 +253,7 @@ def isAvailable(cls):
253253
class FileMovieWriter(MovieWriter):
254254
'`MovieWriter` subclass that handles writing to a file.'
255255
def __init__(self, *args, **kwargs):
256-
MovieWriter.__init__(self, *args)
256+
MovieWriter.__init__(self, *args, **kwargs)
257257
self.frame_format = rcParams['animation.frame_format']
258258

259259
def setup(self, fig, outfile, dpi, frame_prefix='_tmp', clear_temp=True):

0 commit comments

Comments
 (0)
0