From c368e87c9f821a0a4fe7d17b00d60ff362ec3245 Mon Sep 17 00:00:00 2001 From: Paul Gauthier Date: Thu, 11 May 2023 20:21:09 -0700 Subject: [PATCH] bugfix, removed abs_fnames=set() from Coder --- aider/coder.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/aider/coder.py b/aider/coder.py index 9c4ecec41..eda6be68d 100755 --- a/aider/coder.py +++ b/aider/coder.py @@ -28,11 +28,13 @@ openai.api_key = os.getenv("OPENAI_API_KEY") class Coder: - abs_fnames = set() + abs_fnames = None repo = None last_aider_commit_hash = None def __init__(self, main_model, fnames, pretty, history_file, show_diffs, auto_commits, yes): + self.abs_fnames = set() + self.yes = yes self.history_file = history_file self.auto_commits = auto_commits