CHANGE output format from DASH to COMMA

This commit is contained in:
CaffeineFueled 2025-06-10 14:05:00 +02:00
parent 5454480fe0
commit 08574ed4d8

View file

@ -151,7 +151,7 @@ def save_to_file(run_name: str, data: str):
# Append the data with timestamp to the file # Append the data with timestamp to the file
with open(results_file, "a", encoding="utf-8") as f: 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("/") @app.get("/")
async def root(): async def root():