Added import of dump function from aider.dump module to cmd_commit function in commands.py.

This commit is contained in:
Paul Gauthier 2023-05-11 09:30:17 -07:00
parent c9ff2ed7e9
commit adbdbbcb74

View file

@ -67,6 +67,7 @@ class Commands:
def cmd_commit(self, args): def cmd_commit(self, args):
"Commit edits to chat session files made outside the chat (commit message optional)" "Commit edits to chat session files made outside the chat (commit message optional)"
from aider.dump import dump
dump(args) dump(args)
if not self.coder.repo: if not self.coder.repo: