Skip to content

Commit

Permalink
Fix E741 ambiguous variable name 'l'
Browse files Browse the repository at this point in the history
  • Loading branch information
bosd authored and Harvie committed Sep 1, 2022
1 parent 6c8afba commit b3b7eb5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bCNC/lib/tkDialogs.py
Original file line number Diff line number Diff line change
Expand Up @@ -100,8 +100,8 @@ def __init__(self, master=None, cnf={}, **kw):
l.pack(side=RIGHT, fill=BOTH, expand=YES, padx="3m", pady="3m")

if cnf["bitmap"]:
l = Label(ftop, bitmap=cnf["bitmap"])
l.pack(side=LEFT, padx="3m", pady="3m")
lbl = Label(ftop, bitmap=cnf["bitmap"])
lbl.pack(side=LEFT, padx="3m", pady="3m")

# Create a row of buttons at the bottom of the dialog
for i, s in enumerate(cnf["strings"]):
Expand Down

0 comments on commit b3b7eb5

Please sign in to comment.