mirror of
https://github.com/Aider-AI/aider.git
synced 2025-06-01 02:05:00 +00:00
style: Fix linting issues in io.py file
This commit is contained in:
parent
f67ea5d010
commit
108ce18d51
1 changed files with 1 additions and 1 deletions
|
@ -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:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue