From 108ce18d5118d264c9b2f5bba06f086f2d840d84 Mon Sep 17 00:00:00 2001 From: "Paul Gauthier (aider)" Date: Thu, 13 Feb 2025 12:12:40 -0800 Subject: [PATCH] style: Fix linting issues in io.py file --- aider/io.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aider/io.py b/aider/io.py index 0c9b87049..3ecb7a2db 100644 --- a/aider/io.py +++ b/aider/io.py @@ -368,7 +368,7 @@ class InputOutput: return self.read_image(filename) try: - with open(str(filename), "r", encoding=self.encoding, errors='ignore') as f: + with open(str(filename), "r", encoding=self.encoding, errors="ignore") as f: return f.read() except FileNotFoundError: if not silent: