Skip to content

Commit

Permalink
3C: fix output table
Browse files Browse the repository at this point in the history
  • Loading branch information
jassak committed Sep 29, 2020
1 parent bdb4f93 commit ac691eb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Exareme-Docker/src/mip-algorithms/THREE_C/threec.py
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ def local_pure(self):

table_out = TabularDataResource(
fields=[str(i + 1) for i in range(len(res))],
data=[tuple(res)],
data=tuple(res),
title="3C result",
)
self.result = AlgorithmResult(
Expand Down

0 comments on commit ac691eb

Please sign in to comment.