Skip to content

Commit 5a802dd

Browse files
committed
filepaths is a dict
1 parent 620869b commit 5a802dd

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

qtp_sequencing/summary.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,8 @@ def generate_html_summary(qclient, job_id, parameters, out_dir):
9999
artifact_info = qclient.get(qclient_url)
100100

101101
# 1a. getting the file paths
102-
filepaths = [x['filepath'] for x in artifact_info['files']]
102+
filepaths = {k: [vv['filepath'] for vv in v]
103+
for k, v in artifact_info['files'].items()}
103104
# 1.b get the artifact type_info
104105
artifact_type = artifact_info['type']
105106

0 commit comments

Comments
 (0)