Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 5ed1869

Browse files
committed
BUG: pass kwargs to TimedAnimation
1 parent df75b0b commit 5ed1869

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

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)