From adbdbbcb744c3eb2d1b5792b7e11b1d7f9198839 Mon Sep 17 00:00:00 2001 From: Paul Gauthier Date: Thu, 11 May 2023 09:30:17 -0700 Subject: [PATCH] Added import of `dump` function from `aider.dump` module to `cmd_commit` function in `commands.py`. --- aider/commands.py | 1 + 1 file changed, 1 insertion(+) diff --git a/aider/commands.py b/aider/commands.py index 6469b3408..ea9e39631 100644 --- a/aider/commands.py +++ b/aider/commands.py @@ -67,6 +67,7 @@ class Commands: def cmd_commit(self, args): "Commit edits to chat session files made outside the chat (commit message optional)" + from aider.dump import dump dump(args) if not self.coder.repo: