From a227220efbb94ee334202eb3c613efa0e24b4ae4 Mon Sep 17 00:00:00 2001 From: "Paul Gauthier (aider)" Date: Thu, 29 Aug 2024 07:34:42 -0700 Subject: [PATCH] style: use double quotes for string literal in report.py --- aider/report.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aider/report.py b/aider/report.py index 26acd33ab..a16f3f2d3 100644 --- a/aider/report.py +++ b/aider/report.py @@ -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):