Skip to content

Commit bf11d20

Browse files
Remove target parameter from close_issue_as_fixed function
Signed-off-by: Joe Isaacs <joe.isaacs@live.co.uk>
1 parent 61d27be commit bf11d20

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/scripts/close_fixed_fuzzer_issues.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ def close_artifact_unavailable(repo: str, issue_number: int, dry_run: bool) -> N
135135
)
136136

137137

138-
def close_issue_as_fixed(repo: str, issue_number: int, target: str, dry_run: bool) -> None:
138+
def close_issue_as_fixed(repo: str, issue_number: int, dry_run: bool) -> None:
139139
"""Close the issue with a comment explaining the crash no longer reproduces."""
140140
body = (
141141
f"## Crash No Longer Reproduces\n\n"
@@ -324,7 +324,7 @@ def main() -> None:
324324

325325
if result == "fixed":
326326
print(" Crash NO LONGER reproduces — closing issue")
327-
close_issue_as_fixed(args.repo, issue.number, args.target, args.dry_run)
327+
close_issue_as_fixed(args.repo, issue.number, args.dry_run)
328328
summary["closed"].append(issue.number)
329329
elif result == "reproduces":
330330
print(" Crash STILL reproduces — leaving open")

0 commit comments

Comments
 (0)