Merge pull request #4008 from facelezzzz/main

fix: Fix #3987 Pass the coder object to repo.commit
This commit is contained in:
paul-gauthier 2025-05-12 09:44:39 -07:00 committed by GitHub
commit 56b45ce1d3
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -346,7 +346,7 @@ class Commands:
return
commit_message = args.strip() if args else None
self.coder.repo.commit(message=commit_message)
self.coder.repo.commit(message=commit_message, coder=self.coder)
def cmd_lint(self, args="", fnames=None):
"Lint and fix in-chat files or all dirty files if none in chat"