From b11cd61032ce132dedc177fb53a60cfb5afe518e Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Mon, 23 Mar 2026 17:37:10 +0000 Subject: [PATCH 1/2] =?UTF-8?q?=E2=AC=86=20[pre-commit.ci]=20pre-commit=20?= =?UTF-8?q?autoupdate?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit updates: - [github.com/astral-sh/ruff-pre-commit: v0.15.0 → v0.15.7](https://github.com/astral-sh/ruff-pre-commit/compare/v0.15.0...v0.15.7) --- .pre-commit-config.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 478d6a5..e037d3c 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -14,7 +14,7 @@ repos: - id: debug-statements - repo: https://github.com/astral-sh/ruff-pre-commit - rev: v0.15.0 + rev: v0.15.7 hooks: - id: ruff args: [--fix, --exit-non-zero-on-fix] From be59bb1e5589ae8cc37624c329960f3c88eeb0e4 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Mon, 23 Mar 2026 17:37:26 +0000 Subject: [PATCH 2/2] =?UTF-8?q?=F0=9F=8E=A8=20[pre-commit.ci]=20Auto=20for?= =?UTF-8?q?mat=20from=20pre-commit.com=20hooks?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- tests/test_transport.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tests/test_transport.py b/tests/test_transport.py index 44e5cb0..562115b 100644 --- a/tests/test_transport.py +++ b/tests/test_transport.py @@ -289,7 +289,9 @@ async def test_async_transport_passes_through_non_402_response() -> None: inner = _PassthroughAsyncTransport() transport = AsyncX402Transport(_FakeX402ClientAsync(), inner=inner) - response = await transport.handle_async_request(httpx.Request("GET", "https://example.com/v1/models")) + response = await transport.handle_async_request( + httpx.Request("GET", "https://example.com/v1/models") + ) assert response.status_code == 200 assert inner.calls == 1