Skip to content

Commit 1613eea

Browse files
committed
Black
1 parent eb63e28 commit 1613eea

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

parse_jenkins_builds.py

+6-2
Original file line numberDiff line numberDiff line change
@@ -172,12 +172,16 @@ def grep(filename, pattern, verbose=False):
172172
kill_index = 0
173173

174174
# Abort stuck rocm jobs
175-
if job_name in ("ib-run-pr-unittests", "ib-run-pr-relvals") and reason.endswith("-offline") and (payload["wait_time"] / 1000 / 60 > 60):
175+
if (
176+
job_name in ("ib-run-pr-unittests", "ib-run-pr-relvals")
177+
and reason.endswith("-offline")
178+
and (payload["wait_time"] / 1000 / 60 > 60)
179+
):
176180
params = element["params"].strip().split("\n")
177181
main_params = ""
178182
other_params = []
179183
for _ in params:
180-
k, v = _.split("=")
184+
k, v = _.split("=")
181185
if k == "PULL_REQUEST":
182186
main_params = _
183187
else:

0 commit comments

Comments
 (0)