From 87dbb56d7ec40fabe00a62ef6c3da75c4ce222d0 Mon Sep 17 00:00:00 2001 From: "Paul Gauthier (aider)" Date: Thu, 5 Dec 2024 18:57:50 -0800 Subject: [PATCH] style: fix trailing comma in system prompt dictionary --- aider/coders/editor_editblock_coder.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aider/coders/editor_editblock_coder.py b/aider/coders/editor_editblock_coder.py index 97e5907d7..5cb79e4f4 100644 --- a/aider/coders/editor_editblock_coder.py +++ b/aider/coders/editor_editblock_coder.py @@ -39,7 +39,7 @@ class EditorEditBlockCoder(EditBlockCoder): chunks.reminder = [ dict( role="system", - content=self.fmt_system_prompt(self.gpt_prompts.system_reminder) + content=self.fmt_system_prompt(self.gpt_prompts.system_reminder), ) ] elif self.main_model.reminder == "user" and final["role"] == "user":