mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-20 12:24:59 +00:00
style: Wrap long lines in f-strings
This commit is contained in:
parent
215833d326
commit
3d70f88bcc
1 changed files with 2 additions and 1 deletions
|
@ -80,7 +80,8 @@ def main():
|
|||
oldest_issue = find_oldest_issue(subject, all_issues)
|
||||
if oldest_issue:
|
||||
print(
|
||||
f"Oldest issue: {oldest_issue['html_url']} (created on {oldest_issue['created_at']})"
|
||||
f"Oldest issue: {oldest_issue['html_url']} (created on"
|
||||
f" {oldest_issue['created_at']})"
|
||||
)
|
||||
else:
|
||||
print("No oldest issue found")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue