Skip to content

Commit a54f4fb

Browse files
Fix function call (#81)
1 parent 979e4e8 commit a54f4fb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

plot.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ def plot():
2828
figures_path.mkdir()
2929

3030
# Combine all output files in a single dataframe
31-
output_df = pd.concat([pd.read_csv(output_dir / filename) for filename in hlp.get_output_files()], ignore_index=True)
31+
output_df = pd.read_csv(hlp.get_output_filename())
3232

3333
plot_config = hlp.get_plot_config_data()
3434

0 commit comments

Comments
 (0)