Skip to content
Snippets Groups Projects
Commit 1ae9d33c authored by Tiago de Freitas Pereira's avatar Tiago de Freitas Pereira
Browse files

Fixed bug with the CSV header

parent 493da265
No related branches found
No related tags found
2 merge requests!185Wrappers and aggregators,!180[dask] Preparing bob.bio.base for dask pipelines
Pipeline #39646 failed
......@@ -178,5 +178,8 @@ class CSVScoreWriter(ScoreWriter):
for sset in samplesets:
for s in sset:
f.writelines(s.data)
if i==0:
f.writelines(s.data)
else:
f.writelines(s.data[1:])
samplesets_list[i] = None
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment