Skip to content

Commit

Permalink
Update service.py
Browse files Browse the repository at this point in the history
  • Loading branch information
miquelduranfrigola authored Apr 25, 2024
1 parent 50ffd19 commit f455fc2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/service.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,10 +74,10 @@ def run(self, smiles_list):
h = next(reader)
R = []
for r in reader:
R += [{"outcome": [Float(x) for x in r]}]
R += [[Float(x) for x in r]]
result = {
"result": R,
"meta": {"outcome": h}
"meta": h
}
return result

Expand Down

0 comments on commit f455fc2

Please sign in to comment.