(self, txt)
| 229 | self.header = urwid.AttrMap(h, style) |
| 230 | |
| 231 | def widget(self, txt): |
| 232 | cols, _ = self.master.ui.get_cols_rows() |
| 233 | return urwid.ListBox([urwid.Text(i) for i in textwrap.wrap(txt, cols)]) |
| 234 | |
| 235 | def update_help_text(self, txt: str) -> None: |
| 236 | self.body = self.widget(txt) |
no outgoing calls
no test coverage detected