| 4 | |
| 5 | |
| 6 | class Highlight(urwid.AttrMap): |
| 7 | def __init__(self, t): |
| 8 | urwid.AttrMap.__init__( |
| 9 | self, |
| 10 | urwid.Text(t.text), |
| 11 | "focusfield", |
| 12 | ) |
| 13 | self.backup = t |
| 14 | |
| 15 | |
| 16 | class Searchable(urwid.ListBox): |
no outgoing calls
no test coverage detected
searching dependent graphs…