(category: OptionCategory[Any])
| 105 | tokens: StyleAndTextTuples = [] |
| 106 | |
| 107 | def append_category(category: OptionCategory[Any]) -> None: |
| 108 | tokens.extend( |
| 109 | [ |
| 110 | ("class:sidebar", " "), |
| 111 | ("class:sidebar.title", f" {category.title:36}"), |
| 112 | ("class:sidebar", "\n"), |
| 113 | ] |
| 114 | ) |
| 115 | |
| 116 | def append(index: int, label: str, status: str) -> None: |
| 117 | selected = index == python_input.selected_option_index |
no outgoing calls
no test coverage detected