Skip to content

Commit dd447a0

Browse files
flake8
1 parent 5709e7b commit dd447a0

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

lib/matplotlib/backends/_backend_tk.py

+3-2
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,7 @@ def _restore_foreground_window_at_end():
5656
TK_PHOTO_COMPOSITE_OVERLAY = 0 # apply transparency rules pixel-wise
5757
TK_PHOTO_COMPOSITE_SET = 1 # set image buffer directly
5858

59+
5960
def _blit(argsid):
6061
"""
6162
Thin wrapper to blit called via tkapp.call.
@@ -64,8 +65,8 @@ def _blit(argsid):
6465
the ``_blit_args`` dict, since arguments cannot be passed directly.
6566
"""
6667
photoimage, dataptr, offsets, bboxptr, comp_rule = _blit_args.pop(argsid)
67-
_tkagg.blit(
68-
photoimage.tk.interpaddr(), str(photoimage), dataptr, comp_rule, offsets, bboxptr)
68+
_tkagg.blit(photoimage.tk.interpaddr(), str(photoimage), dataptr,
69+
comp_rule, offsets, bboxptr)
6970

7071

7172
def blit(photoimage, aggimage, offsets, bbox=None):

0 commit comments

Comments
 (0)