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():