From 40620d98bfea7af1ffe40950cbc5a41444a2a9d6 Mon Sep 17 00:00:00 2001 From: Adrienucl <adrien.payen@student.uclouvain.be> Date: Mon, 6 May 2024 19:07:28 +0200 Subject: [PATCH] update content based --- loaders.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/loaders.py b/loaders.py index 9e0c74c6..26434d89 100644 --- a/loaders.py +++ b/loaders.py @@ -45,7 +45,7 @@ def export_evaluation_report(report): DataFrame: Merged ratings and items data. """ report_name = f"evaluation_report_{pd.Timestamp.now().strftime('%Y-%m-%d')}.csv" - export_path = os.path.join(C.CONTENT_PATH/C.EVALUATION_PATH, report_name) + export_path = os.path.join(C.EVALUATION_PATH, report_name) report.to_csv(export_path, index=False) print("The data has been exported to the evaluation report") return report \ No newline at end of file -- GitLab