From d0b4cc6f8742648cd5399c202ea15811efe62673 Mon Sep 17 00:00:00 2001 From: Huy Do Date: Fri, 13 Jun 2025 12:50:08 -0700 Subject: [PATCH] Updated PyTorch OSS benchmark infra (markdown) --- PyTorch-OSS-benchmark-infra.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PyTorch-OSS-benchmark-infra.md b/PyTorch-OSS-benchmark-infra.md index 9e42e31..dbcdf86 100644 --- a/PyTorch-OSS-benchmark-infra.md +++ b/PyTorch-OSS-benchmark-infra.md @@ -275,7 +275,7 @@ params = { api_url = "https://queries.clickhouse.cloud/run/84649f4e-52c4-4cf9-bd6e-0a105ea145c8" r = requests.get(api_url, params=params, auth=(username, password)) -with ("benchmark_results.txt", "w") as f: +with open("benchmark_results.txt", "w") as f: print(r.text, file=f) ```