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 ffed584 commit 24449b4Copy full SHA for 24449b4
qiita_db/artifact.py
@@ -1463,8 +1463,8 @@ def prep_templates(self):
1463
FROM qiita.preparation_artifact
1464
WHERE artifact_id = %s"""
1465
qdb.sql_connection.TRN.add(sql, [self.id])
1466
- templates = [qdb.metadata_template.prep_template.PrepTemplate(pt_id)
1467
- for pt_id in qdb.sql_connection.TRN.execute_fetchflatten()]
+ templates = [qdb.metadata_template.prep_template.PrepTemplate(pt_id) # noqa
+ for pt_id in qdb.sql_connection.TRN.execute_fetchflatten()] # noqa
1468
1469
if len(templates) > 1:
1470
# We never expect an artifact to be associated with multiple
0 commit comments