Skip to content

Commit

Permalink
fix(result): bug in combine_results method
Browse files Browse the repository at this point in the history
  • Loading branch information
tomjholland committed Jan 2, 2025
1 parent 62a0e5f commit f1c40a0
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions pyprobe/result.py
Original file line number Diff line number Diff line change
Expand Up @@ -600,7 +600,5 @@ def combine_results(
pl.lit(result.info[key]).alias(key) for key in result.info.keys()
]
result.live_dataframe = result.live_dataframe.with_columns(instructions)
combined_result = results[0].clean_copy()
combined_result.info = {}
combined_result.extend(results[0:], concat_method=concat_method)
return combined_result
results[0].extend(results[1:], concat_method=concat_method)
return results[0]

0 comments on commit f1c40a0

Please sign in to comment.