Update multi_agent.py
Browse files- multi_agent.py +1 -1
multi_agent.py
CHANGED
@@ -5,7 +5,7 @@ from typing_extensions import Annotated
|
|
5 |
board = None
|
6 |
board_svgs = None
|
7 |
made_move = None
|
8 |
-
|
9 |
|
10 |
def get_legal_moves() -> Annotated[str, "A list of legal moves in UCI format"]:
|
11 |
print("###### get_legal_moves")
|
|
|
5 |
board = None
|
6 |
board_svgs = None
|
7 |
made_move = None
|
8 |
+
game_over = False
|
9 |
|
10 |
def get_legal_moves() -> Annotated[str, "A list of legal moves in UCI format"]:
|
11 |
print("###### get_legal_moves")
|