(s: str, attr: str)
| 87 | |
| 88 | |
| 89 | def fcol(s: str, attr: str) -> tuple[str, int, urwid.Text]: |
| 90 | s = str(s) |
| 91 | return ("fixed", len(s), urwid.Text([(attr, s)])) |
| 92 | |
| 93 | |
| 94 | if urwid.util.detected_encoding: |
no outgoing calls
no test coverage detected
searching dependent graphs…