mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-20 12:24:59 +00:00
style: Fix line length in issues.py
This commit is contained in:
parent
844e12769c
commit
df8c88cef4
1 changed files with 1 additions and 3 deletions
|
@ -371,9 +371,7 @@ def handle_fixed_issues(all_issues, auto_yes):
|
|||
comment_url = (
|
||||
f"{GITHUB_API_URL}/repos/{REPO_OWNER}/{REPO_NAME}/issues/{issue['number']}/comments"
|
||||
)
|
||||
comment = (
|
||||
CLOSE_FIXED_ENHANCEMENT_COMMENT if is_enhancement else CLOSE_FIXED_BUG_COMMENT
|
||||
)
|
||||
comment = CLOSE_FIXED_ENHANCEMENT_COMMENT if is_enhancement else CLOSE_FIXED_BUG_COMMENT
|
||||
response = requests.post(comment_url, headers=headers, json={"body": comment})
|
||||
response.raise_for_status()
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue