From 42a4df139c441f421ac1db4cb85e4551d5354c9f Mon Sep 17 00:00:00 2001 From: Paul Gauthier Date: Thu, 11 May 2023 09:37:36 -0700 Subject: [PATCH] Removed unused import and function call in cmd_commit. --- aider/commands.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/aider/commands.py b/aider/commands.py index ea9e39631..69974f7b7 100644 --- a/aider/commands.py +++ b/aider/commands.py @@ -67,8 +67,6 @@ 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: self.console.print("[red]No git repository found.")