mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-28 16:25:00 +00:00
style: Format code with consistent indentation and line breaks
This commit is contained in:
parent
e81f83ffc5
commit
eff169cb5d
1 changed files with 6 additions and 1 deletions
|
@ -19,7 +19,12 @@ def process_markdown(filename, fh):
|
|||
print(f"@@@ File '{filename}' not found.", "@" * 20, file=fh, flush=True)
|
||||
return
|
||||
except UnicodeDecodeError:
|
||||
print(f"@@@ File '{filename}' has an encoding issue. Make sure it's UTF-8 encoded.", "@" * 20, file=fh, flush=True)
|
||||
print(
|
||||
f"@@@ File '{filename}' has an encoding issue. Make sure it's UTF-8 encoded.",
|
||||
"@" * 20,
|
||||
file=fh,
|
||||
flush=True,
|
||||
)
|
||||
return
|
||||
|
||||
# Split the content into sections based on '####' headers
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue