Skip to content

Commit d73d5ca

Browse files
committed
Embrace the E501
1 parent dd3567a commit d73d5ca

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

lib/matplotlib/animation.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -472,9 +472,9 @@ def output_args(self):
472472
lavcopts = {'vcodec': self.codec}
473473
if self.bitrate > 0:
474474
lavcopts.update(vbitrate=self.bitrate)
475-
476-
args = ['-o', self.outfile, '-ovc', 'lavc',
477-
'-lavcopts', ':'.join(itertools.starmap('{0}={1}'.format, lavcopts.items()))]
475+
args = ['-o', self.outfile, '-ovc', 'lavc', '-lavcopts',
476+
':'.join(itertools.starmap('{0}={1}'.format,
477+
lavcopts.items()))]
478478
if self.extra_args:
479479
args.extend(self.extra_args)
480480
if self.metadata:

0 commit comments

Comments
 (0)