fix: Remove unnecessary f-string without placeholders

This commit is contained in:
Paul Gauthier (aider) 2025-02-06 14:15:17 -08:00
parent 229e8e1ad1
commit 036c7a2117

View file

@ -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)