Skip to content

Commit f930098

Browse files
committed
STY: fix whitespace
1 parent e3fea7e commit f930098

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

lib/matplotlib/animation.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
# * Can blit be enabled for movies?
1818
# * Need to consider event sources to allow clicking through multiple figures
1919

20+
2021
import abc
2122
import base64
2223
import contextlib
@@ -473,9 +474,12 @@ def finish(self):
473474
super().finish()
474475
finally:
475476
if self._tmpdir:
476-
_log.debug('MovieWriter: clearing temporary path=%s', self._tmpdir)
477+
_log.debug(
478+
'MovieWriter: clearing temporary path=%s', self._tmpdir
479+
)
477480
self._tmpdir.cleanup()
478481

482+
479483
@writers.register('pillow')
480484
class PillowWriter(AbstractMovieWriter):
481485
@classmethod

0 commit comments

Comments
 (0)