mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-31 09:44:59 +00:00
style: use double quotes for string literal in report.py
This commit is contained in:
parent
f89f42491c
commit
a227220efb
1 changed files with 1 additions and 1 deletions
|
@ -30,7 +30,7 @@ def report_github_issue(issue_text, title=None):
|
|||
print("\nDo you want to open this issue in your browser? (y/n)")
|
||||
confirmation = input().strip().lower()
|
||||
|
||||
if confirmation == 'y':
|
||||
if confirmation == "y":
|
||||
try:
|
||||
print("Attempting to open the issue URL in your default web browser...")
|
||||
if webbrowser.open(issue_url):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue