Skip to content

Commit

Permalink
remove superfluous if statement
Browse files Browse the repository at this point in the history
  • Loading branch information
clarabakker committed Jan 3, 2025
1 parent 093609f commit d65826f
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions chalicelib_fourfront/checks/wfr_checks.py
Original file line number Diff line number Diff line change
Expand Up @@ -2375,9 +2375,7 @@ def insulation_scores_and_boundaries_status(connection, **kwargs):
insu_and_boun_report = wfr_utils.get_wfr_out(file_meta, "insulation-scores-and-boundaries-caller", key=my_auth, **kwargs)

# only want to modify report if we're looking at an mcool file
if skip:
continue
elif insu_and_boun_report['status'] == 'running':
if insu_and_boun_report['status'] == 'running':
running.append(pfile['accession'])
elif insu_and_boun_report['status'].startswith("no complete run, too many"):
problematic_run.append(['step1', a_res['accession'], pfile['accession']])
Expand Down

0 comments on commit d65826f

Please sign in to comment.