Skip to content

Commit c7216ac

Browse files
committed
Fix code formatting in test_client.py
Add blank lines after docstrings in MockTransport elapsed tests to comply with Ruff formatting rules.
1 parent 313a4f4 commit c7216ac

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

tests/client/test_client.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -467,6 +467,7 @@ def test_mock_transport_elapsed():
467467
468468
Regression test for https://github.com/encode/httpx/issues/3712
469469
"""
470+
470471
def handler(request):
471472
return httpx.Response(200, json={"text": "Hello, world!"})
472473

@@ -486,6 +487,7 @@ async def test_async_mock_transport_elapsed():
486487
487488
Regression test for https://github.com/encode/httpx/issues/3712
488489
"""
490+
489491
def handler(request):
490492
return httpx.Response(200, json={"text": "Hello, world!"})
491493

0 commit comments

Comments
 (0)