diff --git a/chess.py b/chess.py index ec1b186..ddc70c6 100644 --- a/chess.py +++ b/chess.py @@ -528,11 +528,3 @@ class Game: return True -game = Game() -while True: - i = input(">> ") - game.AN_move(i) - if i =="prev": - game.prev() - print(game) - print(game.index, len(game.history), len(game.moves))