From 08574ed4d8028cbf75861cb11bc9dcbfc554d34e Mon Sep 17 00:00:00 2001 From: CaffeineFueled Date: Tue, 10 Jun 2025 14:05:00 +0200 Subject: [PATCH] CHANGE output format from DASH to COMMA --- main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.py b/main.py index 355a110..89b378f 100644 --- a/main.py +++ b/main.py @@ -151,7 +151,7 @@ def save_to_file(run_name: str, data: str): # Append the data with timestamp to the file with open(results_file, "a", encoding="utf-8") as f: - f.write(f"{timestamp} - {data.strip()}\n") + f.write(f"{timestamp},{data.strip()}\n") @app.get("/") async def root():