(self, name, canvas)
| 1246 | """ |
| 1247 | |
| 1248 | def __init__(self, name, canvas): |
| 1249 | super().__init__(name, canvas) |
| 1250 | self.width, self.height = canvas.get_width_height() |
| 1251 | |
| 1252 | |
| 1253 | class CloseEvent(Event): |
nothing calls this directly
no test coverage detected