From 1c264eef67dc341f537433762b90eb5aeabb1b29 Mon Sep 17 00:00:00 2001 From: Paul Gauthier Date: Thu, 22 Jun 2023 12:03:04 -0700 Subject: [PATCH] noop --- aider/coders/base_coder.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/aider/coders/base_coder.py b/aider/coders/base_coder.py index 050b6fc64..4a46875ff 100755 --- a/aider/coders/base_coder.py +++ b/aider/coders/base_coder.py @@ -491,6 +491,7 @@ class Coder: if self.partial_response_content: self.io.ai_output(self.partial_response_content) elif self.partial_response_function_call: + # TODO: push this into subclasses args = self.parse_partial_args() if args: explanation = args.get("explanation") @@ -724,8 +725,6 @@ class Coder: return set(self.get_all_relative_files()) - set(self.get_inchat_relative_files()) def allowed_to_edit(self, path, write_content=None): - # TODO: respect --dry-run - full_path = os.path.abspath(os.path.join(self.root, path)) if full_path in self.abs_fnames: