Skip to content

Commit

Permalink
addressed certain style requirement by Travis
Browse files Browse the repository at this point in the history
  • Loading branch information
qiyunzhu committed Aug 7, 2017
1 parent 5dfa799 commit 10cb85a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plate_mapper/plate_mapper.py
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ def plate_mapper(input_f, barseq_f, output_f, names_f=None, special_f=None,
# Check for repeated sample names
warning = ''
samples = Counter(samples)
repeated = [sample for sample, count in samples.items() if count > 1]
repeated = [name for name, count in samples.items() if count > 1]
if repeated:
warning += (' Repeated samples: %s.\n'
% _print_list(sorted(repeated)))
Expand Down

0 comments on commit 10cb85a

Please sign in to comment.