Skip to content

Commit

Permalink
Merge pull request #2795 from nims11/fix-discard
Browse files Browse the repository at this point in the history
Fix files not being excluded in benchmark.py
  • Loading branch information
paul-gauthier authored Jan 7, 2025
2 parents fcdb259 + ed9d709 commit 3a97d8c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion benchmark/benchmark.py
Original file line number Diff line number Diff line change
Expand Up @@ -693,7 +693,7 @@ def run_test_real(
ignore_files.update(example_files)

# Remove any ignore files from the solution set that LLM will edit
solution_files.discard(ignore_files)
solution_files.difference_update(ignore_files)

# Copy all solution files
for file_path in solution_files:
Expand Down

0 comments on commit 3a97d8c

Please sign in to comment.