From 996649fd98046bb96529a157c564c0b354221adf Mon Sep 17 00:00:00 2001 From: "Paul Gauthier (aider)" Date: Fri, 9 Aug 2024 17:33:23 -0400 Subject: [PATCH] fix: Remove unnecessary f-string --- aider/commands.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aider/commands.py b/aider/commands.py index 3e51835ef..38f0c0599 100644 --- a/aider/commands.py +++ b/aider/commands.py @@ -141,7 +141,7 @@ class Commands: content = self.scraper.scrape(url) or "" content = f"{url}:\n\n" + content - self.io.tool_output(f"... done.") + self.io.tool_output("... done.") if paginate: # Use pypager to show the content