Skip to content

Commit 2ac13eb

Browse files
committed
Fix ruff E501: break long line in test_client.py
1 parent 24d1687 commit 2ac13eb

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

tests/test_client.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -388,7 +388,9 @@ def test_runtime_disk_recovery(self, make_client, tmp_storage_path):
388388
client = _make()
389389

390390
# Simulate events persisted to disk mid-process
391-
events = [{"method": "GET", "path": "/runtime-recover", "status_code": 200, "response_time_ms": 1}]
391+
events = [
392+
{"method": "GET", "path": "/runtime-recover", "status_code": 200, "response_time_ms": 1}
393+
]
392394
with open(tmp_storage_path, "w") as f:
393395
f.write(json.dumps(events) + "\n")
394396

0 commit comments

Comments
 (0)