Skip to content

Commit

Permalink
Remove is_move_correct check at higher wtime test
Browse files Browse the repository at this point in the history
  • Loading branch information
johndoknjas committed Aug 29, 2024
1 parent 958e9df commit ca8b595
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions stockfish/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -360,8 +360,6 @@ def make_moves_from_current_position(self, moves: Optional[List[str]]) -> None:
return
self._prepare_for_new_position(False)
for move in moves:
if self.is_move_correct(move):
pass
self._put(f"position fen {self.get_fen_position()} moves {move}")

def get_board_visual(self, perspective_white: bool = True) -> str:
Expand Down

0 comments on commit ca8b595

Please sign in to comment.