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

Skip to content

Commit 4c5dfaa

Browse files
committed
pep8
1 parent 512e4d8 commit 4c5dfaa

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

lib/matplotlib/backends/tkagg.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,8 @@ def blit(photoimage, aggimage, bbox=None, colormode=1):
1414
if bbox is not None:
1515
bbox_array = bbox.__array__()
1616
# x1, x2, y1, y2
17-
bboxptr = (bbox_array[0, 0], bbox_array[1, 0], bbox_array[0, 1], bbox_array[1, 1])
17+
bboxptr = (bbox_array[0, 0], bbox_array[1, 0],
18+
bbox_array[0, 1], bbox_array[1, 1])
1819
else:
1920
bboxptr = 0
2021
data = np.asarray(aggimage)

0 commit comments

Comments
 (0)