mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-20 04:14:59 +00:00
fix: Break long line to resolve flake8 line length error
This commit is contained in:
parent
479d476878
commit
7edc9603d0
1 changed files with 3 additions and 1 deletions
|
@ -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}
|
||||
)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue