Skip to content

Commit

Permalink
Fix bug
Browse files Browse the repository at this point in the history
  • Loading branch information
john-b-yang committed Jul 8, 2024
1 parent be358d5 commit 342bece
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion swebench/collect/print_pulls.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,6 @@ def log_all_pulls(
for i_pull, pull in enumerate(repo.get_all_pulls()):
setattr(pull, "resolved_issues", repo.extract_resolved_issues(pull))
print(json.dumps(obj2dict(pull)), end="\n", flush=True, file=file)
breakpoint()
if max_pulls is not None and i_pull >= max_pulls:
break
if cutoff_date is not None and pull.created_at < cutoff_date:
Expand Down

0 comments on commit 342bece

Please sign in to comment.