pep8 fixes for console_conf/ui/views/welcome.py

This commit is contained in:
Ryan Harper 2018-05-24 14:11:06 -05:00
parent 1451bfc93b
commit a06c15bd28
1 changed files with 3 additions and 1 deletions

View File

@ -34,7 +34,9 @@ class WelcomeView(BaseView):
def __init__(self, controller):
self.controller = controller
super().__init__(Pile([
ListBox([Text('')]), # need to have a listbox or something else "stretchy" here or urwid complains.
# need to have a listbox or something else "stretchy" here or
# urwid complains.
ListBox([Text('')]),
('pack', button_pile([ok_btn("OK", on_press=self.confirm)])),
('pack', Text("")),
], focus_item=1))