From 8bba37de63f0b1646afd3b6532f90d90bbaddf59 Mon Sep 17 00:00:00 2001 From: "Paul Gauthier (aider)" Date: Thu, 29 Aug 2024 06:33:18 -0700 Subject: [PATCH] style: Add newline before format_settings import in cmd_settings --- aider/commands.py | 1 + 1 file changed, 1 insertion(+) diff --git a/aider/commands.py b/aider/commands.py index 6c755eb00..fef227411 100644 --- a/aider/commands.py +++ b/aider/commands.py @@ -1076,6 +1076,7 @@ class Commands: def cmd_settings(self, args): "Print out the current settings" from aider.format_settings import format_settings + settings = format_settings(self.parser, self.args) self.io.tool_output(settings)