(self, index)
| 110 | return "break" |
| 111 | |
| 112 | def select(self, index): |
| 113 | self.listbox.focus_set() |
| 114 | self.listbox.activate(index) |
| 115 | self.listbox.selection_clear(0, "end") |
| 116 | self.listbox.selection_set(index) |
| 117 | self.listbox.see(index) |
| 118 | |
| 119 | # Methods to override for specific actions |
| 120 |
no test coverage detected