| 38 | |
| 39 | @dataclass |
| 40 | class QuickHelp: |
| 41 | top_label: str |
| 42 | top_items: HelpItems |
| 43 | bottom_label: str |
| 44 | bottom_items: HelpItems |
| 45 | |
| 46 | def make_rows(self, keymap: Keymap) -> tuple[urwid.Columns, urwid.Columns]: |
| 47 | top = _make_row(self.top_label, self.top_items, keymap) |
| 48 | bottom = _make_row(self.bottom_label, self.bottom_items, keymap) |
| 49 | return top, bottom |
| 50 | |
| 51 | |
| 52 | def make( |
no outgoing calls
no test coverage detected
searching dependent graphs…