From cec9f90c1c0fc4f10ae05cd6aa547ba9acab4053 Mon Sep 17 00:00:00 2001 From: "Paul Gauthier (aider)" Date: Sat, 4 Jan 2025 11:03:43 -0800 Subject: [PATCH] style: Standardize string quotes in `InputOutput` class --- aider/io.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aider/io.py b/aider/io.py index 287c70b5e..d955cfba1 100644 --- a/aider/io.py +++ b/aider/io.py @@ -810,7 +810,7 @@ class InputOutput: self.console.print(message, **style) except UnicodeEncodeError: # Fallback to ASCII-safe output - message = message.encode('ascii', errors='replace').decode('ascii') + message = message.encode("ascii", errors="replace").decode("ascii") self.console.print(message, **style) def tool_error(self, message="", strip=True):