mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-30 09:14:59 +00:00
style: Format code with linter for improved readability
This commit is contained in:
parent
f7de2234f2
commit
76c7c2562c
1 changed files with 3 additions and 1 deletions
|
@ -356,7 +356,9 @@ class InputOutput:
|
||||||
time.sleep(delay)
|
time.sleep(delay)
|
||||||
delay *= 2 # Exponential backoff
|
delay *= 2 # Exponential backoff
|
||||||
else:
|
else:
|
||||||
self.tool_error(f"Unable to write file {filename} after {max_retries} attempts: {err}")
|
self.tool_error(
|
||||||
|
f"Unable to write file {filename} after {max_retries} attempts: {err}"
|
||||||
|
)
|
||||||
raise
|
raise
|
||||||
except OSError as err:
|
except OSError as err:
|
||||||
self.tool_error(f"Unable to write file {filename}: {err}")
|
self.tool_error(f"Unable to write file {filename}: {err}")
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue