Skip to content

Commit

Permalink
style: Wrap long comment_url line to fix flake8 line length error
Browse files Browse the repository at this point in the history
paul-gauthier committed Nov 8, 2024
1 parent 34dc684 commit 8065e38
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion scripts/issues.py
Original file line number Diff line number Diff line change
@@ -279,7 +279,9 @@ def handle_stale_closing(all_issues, auto_yes):
continue

# Add closing comment
comment_url = f"{GITHUB_API_URL}/repos/{REPO_OWNER}/{REPO_NAME}/issues/{issue['number']}/comments"
comment_url = (
f"{GITHUB_API_URL}/repos/{REPO_OWNER}/{REPO_NAME}/issues/{issue['number']}/comments"
)
response = requests.post(
comment_url, headers=headers, json={"body": CLOSE_STALE_COMMENT}
)

0 comments on commit 8065e38

Please sign in to comment.