From 50c987e261fb050020067265e40c4bf16c19f0b4 Mon Sep 17 00:00:00 2001 From: "Paul Gauthier (aider)" Date: Fri, 23 Aug 2024 14:18:38 -0700 Subject: [PATCH] style: Simplify function call --- aider/repo.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/aider/repo.py b/aider/repo.py index c4b3843ec..67f3ce98a 100644 --- a/aider/repo.py +++ b/aider/repo.py @@ -179,9 +179,7 @@ class GitRepo: if max_tokens and num_tokens > max_tokens: continue commit_message = simple_send_with_retries( - model.name, - messages, - extra_headers=model.extra_headers + model.name, messages, extra_headers=model.extra_headers ) if commit_message: break