From 036c7a2117957caf574826fa2d2964f285fec1b4 Mon Sep 17 00:00:00 2001 From: "Paul Gauthier (aider)" Date: Thu, 6 Feb 2025 14:15:17 -0800 Subject: [PATCH] fix: Remove unnecessary f-string without placeholders --- aider/coders/base_coder.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aider/coders/base_coder.py b/aider/coders/base_coder.py index 1818bca01..b00992c8f 100755 --- a/aider/coders/base_coder.py +++ b/aider/coders/base_coder.py @@ -1598,7 +1598,7 @@ class Coder: group = ConfirmGroup(new_mentions) for rel_fname in sorted(new_mentions): if self.io.confirm_ask( - f"Add file to the chat?", subject=rel_fname, group=group, allow_never=True + "Add file to the chat?", subject=rel_fname, group=group, allow_never=True ): self.add_rel_fname(rel_fname) added_fnames.append(rel_fname)