From 766a41d5de616ca2011b549f00b74ce8a0776fc7 Mon Sep 17 00:00:00 2001 From: "Paul Gauthier (aider)" Date: Fri, 9 May 2025 06:57:23 -0700 Subject: [PATCH] style: Apply formatting --- aider/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aider/utils.py b/aider/utils.py index 1efbf8aa5..640a81f58 100644 --- a/aider/utils.py +++ b/aider/utils.py @@ -356,7 +356,7 @@ class Spinner: # Determine the maximum width for the spinner line # Subtract 2 as requested, to leave a margin or prevent cursor wrapping issues max_spinner_width = self.console.width - 2 - if max_spinner_width < 0: # Handle extremely narrow terminals + if max_spinner_width < 0: # Handle extremely narrow terminals max_spinner_width = 0 current_text_payload = f" {self.text}"