()
| 59 | canvas.create_oval(x1, y1, x2, y2, fill=color) |
| 60 | |
| 61 | def reset_board(): |
| 62 | global board, current_player |
| 63 | board = [[EMPTY] * COLS for _ in range(ROWS)] |
| 64 | current_player = PLAYER_1 |
| 65 | draw_board() |
| 66 | |
| 67 | # Create the main window |
| 68 | root = tk.Tk() |
no test coverage detected