From c24e947b18c40f43a25cb281dde1f51f989119c0 Mon Sep 17 00:00:00 2001 From: "Paul Gauthier (aider)" Date: Fri, 27 Sep 2024 13:02:47 -0700 Subject: [PATCH] style: Run linter --- aider/sendchat.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aider/sendchat.py b/aider/sendchat.py index fd581898b..14efce945 100644 --- a/aider/sendchat.py +++ b/aider/sendchat.py @@ -68,7 +68,7 @@ def send_completion( function = functions[0] kwargs["tools"] = [dict(type="function", function=function)] kwargs["tool_choice"] = {"type": "function", "function": {"name": function["name"]}} - + if extra_params is not None: kwargs.update(extra_params)