mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-29 16:54:59 +00:00
style: Standardize string quotes in InputOutput
class
This commit is contained in:
parent
44d36f140a
commit
cec9f90c1c
1 changed files with 1 additions and 1 deletions
|
@ -810,7 +810,7 @@ class InputOutput:
|
||||||
self.console.print(message, **style)
|
self.console.print(message, **style)
|
||||||
except UnicodeEncodeError:
|
except UnicodeEncodeError:
|
||||||
# Fallback to ASCII-safe output
|
# 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)
|
self.console.print(message, **style)
|
||||||
|
|
||||||
def tool_error(self, message="", strip=True):
|
def tool_error(self, message="", strip=True):
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue