(self)
| 422 | self.is_shown = True |
| 423 | |
| 424 | def init_widgets(self): |
| 425 | self.canvas = tk.Canvas(self.parent, width=30, |
| 426 | borderwidth=0, highlightthickness=0, |
| 427 | takefocus=False) |
| 428 | self.update_sidebar() |
| 429 | self.grid() |
| 430 | return self.canvas |
| 431 | |
| 432 | def bind_events(self): |
| 433 | super().bind_events() |
nothing calls this directly
no test coverage detected