Spaces:
Runtime error
Runtime error
valentin urena
commited on
Update chess_board.py
Browse files- chess_board.py +4 -0
chess_board.py
CHANGED
|
@@ -93,6 +93,10 @@ class Game:
|
|
| 93 |
print("Try again")
|
| 94 |
yield self.display_board()
|
| 95 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 96 |
def main():
|
| 97 |
end_game = False # Change this to False
|
| 98 |
|
|
|
|
| 93 |
print("Try again")
|
| 94 |
yield self.display_board()
|
| 95 |
|
| 96 |
+
def get_move_logs(self):
|
| 97 |
+
return self.sequence
|
| 98 |
+
|
| 99 |
+
|
| 100 |
def main():
|
| 101 |
end_game = False # Change this to False
|
| 102 |
|