Clear the entire board and update the board display
(self)
| 82 | self.scr.refresh() |
| 83 | |
| 84 | def erase(self): |
| 85 | """Clear the entire board and update the board display""" |
| 86 | self.state = {} |
| 87 | self.display(update_board=False) |
| 88 | |
| 89 | def display(self, update_board=True): |
| 90 | """Display the whole board, optionally computing one generation""" |