Skip to content

Commit 3d30178

Browse files
committed
fix(loadtest): apply ruff format
1 parent 3b51665 commit 3d30178

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

loadtest/h2_single_conn.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -52,9 +52,7 @@ async def main() -> None:
5252

5353
lats: list[float] = sorted(cast(float, r["latency_ms"]) for r in results)
5454
print(f"{count} requests in {wall_ms:.0f}ms ({count / (wall_ms / 1000):.1f} req/s)")
55-
print(
56-
f"Latency: min={lats[0]:.0f}ms p50={lats[count // 2]:.0f}ms max={lats[-1]:.0f}ms"
57-
)
55+
print(f"Latency: min={lats[0]:.0f}ms p50={lats[count // 2]:.0f}ms max={lats[-1]:.0f}ms")
5856

5957

6058
if __name__ == "__main__":

0 commit comments

Comments
 (0)