Skip to content

Commit e159ee4

Browse files
committed
addressing @charles-cowart comments
1 parent 6f003a7 commit e159ee4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

qiita_pet/handlers/admin_processing_job.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ def post(self):
127127

128128
# Remove blank samples from sample names
129129
blank = [x for x in snames if x.lower().startswith('blank')]
130-
snames = [x for x in snames if 'blank' not in x.lower()]
130+
snames = set(snames) - set(blank)
131131

132132
# Validate user's sample names against qiita study
133133
qsnames = set(qsnames)

0 commit comments

Comments
 (0)