Skip to content

Commit 878e02e

Browse files
committed
fix line length
1 parent 119b116 commit 878e02e

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

homu/utils.py

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,12 @@ def github_set_ref(repo, ref, sha, *, force=False, auto_create=True, retry=1):
2222
raise e
2323
elif e.code == 422 and retry > 0:
2424
time.sleep(5)
25-
return github_set_ref(repo, ref, sha, force=force, auto_create=auto_create, retry=retry - 1)
25+
return github_set_ref(repo,
26+
ref,
27+
sha,
28+
force=force,
29+
auto_create=auto_create,
30+
retry=retry - 1)
2631
else:
2732
raise
2833

0 commit comments

Comments
 (0)