style: use double quotes for string literal in report.py

This commit is contained in:
Paul Gauthier (aider) 2024-08-29 07:34:42 -07:00
parent f89f42491c
commit a227220efb

View file

@ -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):