From 6e866d7e8ac1a6d147fa2f51f47248ae1ce18916 Mon Sep 17 00:00:00 2001 From: "Paul Gauthier (aider)" Date: Wed, 21 Aug 2024 15:36:44 -0700 Subject: [PATCH] fix: Remove unnecessary f-string prefix --- aider/coders/editblock_coder.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aider/coders/editblock_coder.py b/aider/coders/editblock_coder.py index 35029a1d7..32d702c0b 100644 --- a/aider/coders/editblock_coder.py +++ b/aider/coders/editblock_coder.py @@ -43,7 +43,7 @@ class EditBlockCoder(Coder): self.io.tool_error(f"Error running command '{command}': {str(e)}") self.io.tool_output(f"To retry and share output with the LLM: /run {command}") - self.io.tool_output(f"You can find this command in your input history with up-arrow.") + self.io.tool_output("You can find this command in your input history with up-arrow.") def handle_shell_commands(self, commands_str): commands = commands_str.strip().splitlines()