txlyre 1 day ago
parent
commit
681a440b62
1 changed files with 1 additions and 1 deletions
  1. 1 1
      chess0.py

+ 1 - 1
chess0.py

@@ -39,7 +39,7 @@ class ChessSession:
             if move not in self.board.legal_moves:
                 raise IllegalMove(move)
         else:
-            move = await self.engine.play(self.board, chess.engine.Limit(time=10))
+            move = await self.engine.play(self.board)
             move = move.move
 
         self.board.push(move)