Skip to content

Commit

Permalink
dont return if position fen command
Browse files Browse the repository at this point in the history
  • Loading branch information
johndoknjas committed Aug 29, 2024
1 parent 02ad5b3 commit 5c2f1d9
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions tests/stockfish/test_models.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,6 @@ def send_command(process, command: str):
process.stdin.write(command + "\n")
process.stdin.flush()
lines = []
if command.startswith("position fen"):
return []
while True:
line = process.stdout.readline()
lines.append(line)
Expand Down

0 comments on commit 5c2f1d9

Please sign in to comment.