(self)
| 204 | print(self.board) |
| 205 | |
| 206 | def reset_board(self) -> None: |
| 207 | self.board.fill(Board.EMPTY) |
| 208 | |
| 209 | # initiliasing the centre squares |
| 210 | self.board[3, 3] = self.board[4,4] = Board.WHITE |
| 211 | self.board[3, 4] = self.board[4,3] = Board.BLACK |
| 212 | |
| 213 | self.black_disc_count = self.white_disc_count = 2 |