Skip to content

Commit

Permalink
pass looper's samples to pipestat summarize
Browse files Browse the repository at this point in the history
  • Loading branch information
donaldcampbelljr committed Dec 11, 2023
1 parent 1e4b1eb commit 555f30c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions looper/looper.py
Original file line number Diff line number Diff line change
Expand Up @@ -552,7 +552,7 @@ def __call__(self, args):
print(psms)
for name, psm in psms.items():
# Summarize will generate the static HTML Report Function
report_directory = psm.summarize()
report_directory = psm.summarize(looper_samples=self.prj.samples)
print(f"Report directory: {report_directory}")
else:
for piface_source_samples in self.prj._samples_by_piface(
Expand All @@ -567,7 +567,7 @@ def __call__(self, args):
print(psms)
for name, psm in psms.items():
# Summarize will generate the static HTML Report Function
report_directory = psm.summarize()
report_directory = psm.summarize(looper_samples=self.prj.samples)
print(f"Report directory: {report_directory}")


Expand Down

0 comments on commit 555f30c

Please sign in to comment.