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
40202a9cb8
commit
dd1ae5bd3a
1 changed files with 2 additions and 1 deletions
|
@ -78,7 +78,8 @@ def main():
|
||||||
oldest_issue = find_oldest_issue(subject, all_issues)
|
oldest_issue = find_oldest_issue(subject, all_issues)
|
||||||
if oldest_issue:
|
if oldest_issue:
|
||||||
print(
|
print(
|
||||||
f"Oldest issue: #{oldest_issue['number']} (created on {oldest_issue['created_at']})"
|
f"Oldest issue: #{oldest_issue['number']} (created on"
|
||||||
|
f" {oldest_issue['created_at']})"
|
||||||
)
|
)
|
||||||
else:
|
else:
|
||||||
print("No oldest issue found")
|
print("No oldest issue found")
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue