From 853d9a5b2a46573adc80e87dd9447cf6a8d5c71b Mon Sep 17 00:00:00 2001 From: pcamp Date: Wed, 21 Aug 2024 08:13:29 -0500 Subject: [PATCH] Correct description of map-refresh command. Delete " and print it out" because the map-refresh command doesn't print out the map. --- aider/commands.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aider/commands.py b/aider/commands.py index 89fc52494..e74b28ca0 100644 --- a/aider/commands.py +++ b/aider/commands.py @@ -1046,7 +1046,7 @@ class Commands: self.io.tool_output("No repository map available.") def cmd_map_refresh(self, args): - "Force a refresh of the repository map and print it out" + "Force a refresh of the repository map" repo_map = self.coder.get_repo_map(force_refresh=True) if repo_map: self.io.tool_output("The repo map has been refreshed, use /map to view it.")