fix: Remove unnecessary f-string

This commit is contained in:
Paul Gauthier (aider) 2024-08-09 19:47:29 -04:00
parent 30d506ab82
commit 5f323237ea

View file

@ -1662,7 +1662,7 @@ class Coder:
if not self.commit_before_message:
return
if self.commit_before_message != self.repo.get_head():
self.io.tool_output(f"You can use /undo to undo and discard each aider commit.")
self.io.tool_output("You can use /undo to undo and discard each aider commit.")
def dirty_commit(self):
if not self.need_commit_before_edits: