Skip to content

Commit

Permalink
Add fix for accessing psm.pipeline_name #468
Browse files Browse the repository at this point in the history
  • Loading branch information
donaldcampbelljr committed Feb 20, 2024
1 parent 0f8efe2 commit 199967b
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions looper/looper.py
Original file line number Diff line number Diff line change
Expand Up @@ -679,21 +679,21 @@ def destroy_summary(prj, dry_run=False, project_level=False):
[
get_file_for_project(
psm,
pipeline_name=psm["_pipeline_name"],
pipeline_name=psm.pipeline_name,
directory="reports",
),
get_file_for_table(
psm,
pipeline_name=psm["_pipeline_name"],
pipeline_name=psm.pipeline_name,
appendix="stats_summary.tsv",
),
get_file_for_table(
psm,
pipeline_name=psm["_pipeline_name"],
pipeline_name=psm.pipeline_name,
appendix="objs_summary.yaml",
),
get_file_for_table(
psm, pipeline_name=psm["_pipeline_name"], appendix="reports"
psm, pipeline_name=psm.pipeline_name, appendix="reports"
),
],
dry_run,
Expand All @@ -711,21 +711,21 @@ def destroy_summary(prj, dry_run=False, project_level=False):
[
get_file_for_project(
psm,
pipeline_name=psm["_pipeline_name"],
pipeline_name=psm.pipeline_name,
directory="reports",
),
get_file_for_table(
psm,
pipeline_name=psm["_pipeline_name"],
pipeline_name=psm.pipeline_name,
appendix="stats_summary.tsv",
),
get_file_for_table(
psm,
pipeline_name=psm["_pipeline_name"],
pipeline_name=psm.pipeline_name,
appendix="objs_summary.yaml",
),
get_file_for_table(
psm, pipeline_name=psm["_pipeline_name"], appendix="reports"
psm, pipeline_name=psm.pipeline_name, appendix="reports"
),
],
dry_run,
Expand Down

0 comments on commit 199967b

Please sign in to comment.