valentin urena commited on
Commit
2927381
·
verified ·
1 Parent(s): 06f7d3d

Update chess_board.py

Browse files
Files changed (1) hide show
  1. chess_board.py +1 -1
chess_board.py CHANGED
@@ -77,7 +77,7 @@ class Game:
77
  self.board.push(update)
78
  # self.display_board()
79
  self.sequence.append(move)
80
- self.arrow = chess.svg.Arrow(move.from_square, move.to_square, color="#0000cccc")
81
  return True
82
  except:
83
  print(f"Invalid move '{move}'. Use algebraic notation (e.g., 'e4', 'Nf3', 'Bxc4') or ask Gemma for help.")
 
77
  self.board.push(update)
78
  # self.display_board()
79
  self.sequence.append(move)
80
+ self.arrow = chess.svg.Arrow(update.from_square, update.to_square, color="#0000cccc")
81
  return True
82
  except:
83
  print(f"Invalid move '{move}'. Use algebraic notation (e.g., 'e4', 'Nf3', 'Bxc4') or ask Gemma for help.")