aicodingfun commited on
Commit
e8083ef
·
verified ·
1 Parent(s): ed44891

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -89,7 +89,7 @@ def play_tic_tac_toe(evt: gr.SelectData, board, game_over):
89
  if game_over:
90
  return draw_board(board), "Game already finished! Please reset to play again.", True
91
 
92
- print(evt)
93
 
94
  r, c = evt.index[1] // 100, evt.index[0] // 100
95
  if board[r][c] != "":
 
89
  if game_over:
90
  return draw_board(board), "Game already finished! Please reset to play again.", True
91
 
92
+ print(evt.index)
93
 
94
  r, c = evt.index[1] // 100, evt.index[0] // 100
95
  if board[r][c] != "":