Skip to content
This repository has been archived by the owner on Mar 20, 2024. It is now read-only.

Commit

Permalink
fix line length
Browse files Browse the repository at this point in the history
  • Loading branch information
Eh2406 committed Oct 2, 2017
1 parent 119b116 commit 878e02e
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion homu/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,12 @@ def github_set_ref(repo, ref, sha, *, force=False, auto_create=True, retry=1):
raise e
elif e.code == 422 and retry > 0:
time.sleep(5)
return github_set_ref(repo, ref, sha, force=force, auto_create=auto_create, retry=retry - 1)
return github_set_ref(repo,
ref,
sha,
force=force,
auto_create=auto_create,
retry=retry - 1)
else:
raise

Expand Down

0 comments on commit 878e02e

Please sign in to comment.