(self, master)
| 243 | focus_position: int |
| 244 | |
| 245 | def __init__(self, master): |
| 246 | oh = OptionHelp(master) |
| 247 | self.optionslist = OptionsList(master, oh) |
| 248 | super().__init__( |
| 249 | [ |
| 250 | self.optionslist, |
| 251 | (HELP_HEIGHT, oh), |
| 252 | ] |
| 253 | ) |
| 254 | self.master = master |
| 255 | |
| 256 | def current_name(self): |
| 257 | foc, idx = self.optionslist.get_focus() |
no test coverage detected