Skip to content

Commit

Permalink
bug: reinserting columns with list
Browse files Browse the repository at this point in the history
  • Loading branch information
younesStrittmatter committed Aug 19, 2023
1 parent 751a31b commit 68c5ba2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ def experiment_runner(
_res = pd.DataFrame(x_, columns=x_sorted.columns)
res = x
for col in x_sorted.columns:
res[col] = _res[col]
res[col] = list(_res[col])
else:
if rename_output_columns:
res = pd.DataFrame(x_, columns=[el.name for el in args])
Expand Down

0 comments on commit 68c5ba2

Please sign in to comment.