From c25ca20a40ca665516f129ea78d252264c6544ce Mon Sep 17 00:00:00 2001 From: Wojciech Jarmosz Date: Sat, 15 May 2021 02:41:25 +0200 Subject: [PATCH] Mock fix --- save_metrics.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/save_metrics.py b/save_metrics.py index cc415a3..f2b994e 100644 --- a/save_metrics.py +++ b/save_metrics.py @@ -13,5 +13,5 @@ if os.path.exists("rmse.txt"): for line in file.readlines(): result = line - with open("bulk_metrics.txt", "a") as file: + with open("bulk_metrics.txt", "w") as file: file.write(build_no + " " + result)