Skip to content
Snippets Groups Projects
Commit 7d03a959 authored by Thomas Kluyver's avatar Thomas Kluyver Committed by Thomas Kluyver
Browse files

Apply suggestion to src/xfel_calibrate/calibrate.py

parent 4d35534c
No related branches found
No related tags found
1 merge request!544Reproducibility, step 1
......@@ -866,7 +866,7 @@ class JobGroup: # TODO: Naming - task? request? commission?
exit_codes = [
j.run_direct(self.work_dir, self.python) for j in step.jobs
]
if any([ec != 0 for ec in exit_codes]):
if any(ec != 0 for ec in exit_codes):
errors = True
return errors
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment