Commit 741a47c2 authored by Bram Schoenmakers's avatar Bram Schoenmakers

Restore call to parent keypress(), suppress pylint

parent d93c68ff
......@@ -75,3 +75,5 @@ class ViewWidget(urwid.LineBox):
def keypress(self, p_size, p_key):
if p_key == 'esc':
self.close()
else:
return super(ViewWidget, self).keypress(p_size, p_key) # pylint: disable=E1102
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment