We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 696947d + 8c4151a commit 97a666fCopy full SHA for 97a666f
1 file changed
abm/lib/job.py
@@ -35,9 +35,9 @@ def list(context: Context, args: list):
35
log.debug("Getting job list")
36
if history_id:
37
history_id = find_history(gi, history_id)
38
- if history_id is None:
39
- print("ERROR: No such history")
40
- return
+ if history_id is None:
+ print("ERROR: No such history")
+ return
41
job_list = gi.jobs.get_jobs(state=state, history_id=history_id)
42
log.debug(f"Iterating over job list with {len(job_list)} items")
43
for job in job_list:
0 commit comments