From 715a4517aaf6a50655fa42accf14f7f5bd0e7302 Mon Sep 17 00:00:00 2001 From: Tibor Bizjak Date: Thu, 12 Sep 2019 13:01:05 +0200 Subject: [PATCH] Removed test --- chess.py | 8 -------- 1 file changed, 8 deletions(-) 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))