Skip to content

Commit e436079

Browse files
Fixing flake8 warning.
1 parent 645e685 commit e436079

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

tk_tools/widgets.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,8 @@ def __init__(self, parent, options: List[str],
216216
self._values = {}
217217

218218
r = 0
219-
self._lb = tk.Listbox(self, width=width, height=height, selectmode=selectmode, exportselection=0)
219+
self._lb = tk.Listbox(self, width=width, height=height,
220+
selectmode=selectmode, exportselection=0)
220221
self._lb.grid(row=r, column=0, sticky='ew')
221222
[self._lb.insert('end', option) for option in options]
222223
self._lb.bind('<<ListboxSelect>>', lambda _: self._on_select())

0 commit comments

Comments
 (0)