Skip to content

Commit

Permalink
Fix file encoding
Browse files Browse the repository at this point in the history
  • Loading branch information
rernst committed Mar 5, 2024
1 parent af57ce0 commit 4eca979
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion clarity_epp/upload/tecan.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ def results_qc(lims, process_id):

measurements = {}
sample_measurements = {}
for line in lims.get_file_contents(tecan_result_file.id).data.split('\n'):
for line in lims.get_file_contents(tecan_result_file.id).data.decode('utf-8').split('\n'):
if not line.startswith('<>'):
data = line.rstrip().split('\t')
for index, value in enumerate(data[1:]):
Expand Down

0 comments on commit 4eca979

Please sign in to comment.