Merge branch 'master' into urwid_constants

This commit is contained in:
markqvist 2024-01-18 15:38:11 +01:00 committed by GitHub
commit a876c09b4c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
7 changed files with 31 additions and 31 deletions

View file

@ -13,7 +13,7 @@ class ConfigFiller(urwid.WidgetWrap):
def __init__(self, widget, app):
self.app = app
self.filler = urwid.Filler(widget, urwid.TOP)
urwid.WidgetWrap.__init__(self, self.filler)
super().__init__(self.filler)
def keypress(self, size, key):
@ -79,7 +79,7 @@ class EditorTerminal(urwid.WidgetWrap):
urwid.connect_signal(self.term, 'closed', quit_term)
urwid.WidgetWrap.__init__(self, self.term)
super().__init__(self.term)
def keypress(self, size, key):