From 31babf39cd17aa8ee5f49582f7f9ee5a9ccfae99 Mon Sep 17 00:00:00 2001 From: "Paul Gauthier (aider)" Date: Wed, 30 Oct 2024 11:42:50 -0700 Subject: [PATCH] style: fix comment spacing in sanity_check_repo function --- aider/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aider/main.py b/aider/main.py index 53251f7a0..d6a578b77 100644 --- a/aider/main.py +++ b/aider/main.py @@ -366,7 +366,7 @@ def sanity_check_repo(repo, io): io.tool_error("Aider only works with git repos with version number 1 or 2.") io.tool_output("You may be able to convert your repo: git update-index --index-version=2") io.tool_output("Or run aider --no-git to proceed without using git.") - #ai ask if the user wants to open the url! + # ai ask if the user wants to open the url! if io.confirm_ask("Open documentation url for more info?", subject=urls.git_index_version): webbrowser.open(urls.git_index_version) return False