From 4192ac4ef61665c6c779de902bdb72af01bcb9cf Mon Sep 17 00:00:00 2001 From: arch-colony Date: Thu, 18 Jun 2026 06:08:23 +0100 Subject: [PATCH] lint: ruff format test_async_client.py MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit PR #78 merged with a red `lint` check — `ruff format --check` flags a manually-wrapped dict literal in the new TestDeleteAccount async case that fits on one line at line-length 120. This unblocks CI on main. Co-Authored-By: Claude Opus 4.8 (1M context) Claude-Session: https://claude.ai/code/session_01MHVe6Ltre7peEdfZfV3b4x --- tests/test_async_client.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tests/test_async_client.py b/tests/test_async_client.py index 04a7a65..7524f7b 100644 --- a/tests/test_async_client.py +++ b/tests/test_async_client.py @@ -3732,8 +3732,7 @@ async def test_delete_account_has_activity(self) -> None: def handler(request: httpx.Request) -> httpx.Response: return _json_response( - {"detail": {"message": "has activity", - "code": "ACCOUNT_DELETE_HAS_ACTIVITY"}}, + {"detail": {"message": "has activity", "code": "ACCOUNT_DELETE_HAS_ACTIVITY"}}, status=409, )