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

Skip to content

Commit 95cf9d9

Browse files
committed
__populate(): Use augmented assignments.
1 parent b4d8612 commit 95cf9d9

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Tools/pynche/ListViewer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ def __populate(self):
9090
bboxes.append(boxid)
9191
if textend+3 > widest:
9292
widest = textend+3
93-
row = row + 1
93+
row += 1
9494
canvheight = (row-1)*20 + 25
9595
canvas.config(scrollregion=(0, 0, 150, canvheight))
9696
for box in bboxes:

0 commit comments

Comments
 (0)