Skip to content

Commit 4829d36

Browse files
committed
Fix flake8 line len error
1 parent 8da36da commit 4829d36

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

homu/server.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -342,7 +342,8 @@ def rollup(user_gh, state, repo_label, repo_cfg, repo):
342342

343343
if base_url:
344344
pr_list = ','.join(str(x.num) for x in successes)
345-
body += '\n\n[Create a similar rollup]({}/queue/{}?prs={})'.format(base_url, repo_label, pr_list)
345+
body += ('\n\n[Create a similar rollup]({}/queue/{}?prs={})'
346+
.format(base_url, repo_label, pr_list))
346347

347348
try:
348349
pull = base_repo.create_pull(

0 commit comments

Comments
 (0)