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

Skip to content

Commit c100485

Browse files
author
jdollichon
committed
Pep-8 compliant line length
1 parent 664ab81 commit c100485

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

lib/matplotlib/animation.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1723,7 +1723,8 @@ def _draw_frame(self, framedata):
17231723

17241724
# Call the func with framedata and args. If blitting is desired,
17251725
# func needs to return a sequence of any artists that were modified.
1726-
self._drawn_artists = sorted(self._func(framedata, *self._args), key=lambda x: x.get_zorder())
1726+
self._drawn_artists = sorted(self._func(framedata, *self._args),
1727+
key=lambda x: x.get_zorder())
17271728
if self._blit:
17281729
if self._drawn_artists is None:
17291730
raise RuntimeError('The animation function must return a '

0 commit comments

Comments
 (0)