def __init__(self, callback, content=""): self.callback = callback self.w_edit = urwid.Edit(edit_text=content) self.w_lb = urwid.LineBox(self.w_edit) self.__super.__init__(self.w_lb)