From be882158e4349ea86ed4815e0ca4a53da3a22c9a Mon Sep 17 00:00:00 2001 From: Paul Gauthier Date: Thu, 11 May 2023 15:46:02 -0700 Subject: [PATCH] Added auto_commits parameter to Coder class constructor. --- aider/coder.py | 1 + 1 file changed, 1 insertion(+) diff --git a/aider/coder.py b/aider/coder.py index 588cc777f..ddc355f87 100755 --- a/aider/coder.py +++ b/aider/coder.py @@ -35,6 +35,7 @@ class Coder: def __init__(self, main_model, fnames, pretty, history_file, show_diffs, auto_commits): self.history_file = history_file + self.auto_commits = auto_commits if pretty: self.console = Console()