We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 478b613 commit 1a52772Copy full SHA for 1a52772
qiita_db/meta_util.py
@@ -89,11 +89,11 @@ def get_accessible_filepath_ids(user_id):
89
prep_fp_ids = []
90
for rdid in study.raw_data():
91
for pt_id in RawData(rdid).prep_templates:
92
- for ids, _ in PrepTemplate(pt_id).get_filepaths():
93
- prep_fp_ids.append(ids)
+ for _id, _ in PrepTemplate(pt_id).get_filepaths():
+ prep_fp_ids.append(_id)
94
95
filepath_ids.update(prep_fp_ids)
96
- sample_fp_ids = [ids for ids, _
+ sample_fp_ids = [_id for _id, _
97
in SampleTemplate(study_id).get_filepaths()]
98
filepath_ids.update(sample_fp_ids)
99
0 commit comments