mirror of
https://github.com/apache/zeppelin
synced 2026-05-24 09:38:26 +00:00
feature: remove semicolon end of statement
This commit is contained in:
parent
f6b58ee5a0
commit
fef77e51a8
1 changed files with 2 additions and 2 deletions
|
|
@ -57,7 +57,7 @@ def getBuildStatus(author, commit):
|
|||
build = None
|
||||
|
||||
if len(data) == 0:
|
||||
return build;
|
||||
return build
|
||||
|
||||
for b in data:
|
||||
if b["commit"][:len(commit)] == commit:
|
||||
|
|
@ -102,7 +102,7 @@ def printBuildStatus(build):
|
|||
|
||||
for sleep in check:
|
||||
info("--------------------------------")
|
||||
time.sleep(sleep);
|
||||
time.sleep(sleep)
|
||||
info("Get build status ...")
|
||||
build = getBuildStatus(author, commit)
|
||||
if build == None:
|
||||
|
|
|
|||
Loading…
Reference in a new issue