Erases message with spaces when the countdown runs out
(self)
| 346 | self.screen.addstr(0, 0, message_str, curses.color_pair(3)) |
| 347 | |
| 348 | def clear(self): |
| 349 | """ |
| 350 | Erases message with spaces when the countdown runs out |
| 351 | """ |
| 352 | self.screen.addstr(0, 0, ' ' * 11, curses.color_pair(1)) |
| 353 | |
| 354 | |
| 355 | class Column: |