style: Wrap long lines in f-strings

This commit is contained in:
Paul Gauthier (aider) 2024-09-20 11:23:53 -07:00
parent 215833d326
commit 3d70f88bcc

View file

@ -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")