Skip to content

Commit 6f4ae44

Browse files
committed
ruff format update
1 parent d86b4a5 commit 6f4ae44

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tests/shared/test_session.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,6 +121,7 @@ async def make_request(client_session: ClientSession):
121121
with anyio.fail_after(1):
122122
await ev_tool_cancelled.wait()
123123

124+
124125
@pytest.mark.anyio
125126
async def test_request_cancellation_uncancellable():
126127
"""Test that asserts."""
@@ -141,7 +142,7 @@ async def handle_call_tool(name: str, arguments: dict | None) -> list:
141142
if name == "slow_tool":
142143
ev_tool_called.set()
143144
with anyio.CancelScope():
144-
with anyio.fail_after(10): # Long enough to ensure we can cancel
145+
with anyio.fail_after(10): # Long enough to ensure we can cancel
145146
await ev_cancelled.wait()
146147
ev_tool_commplete.set()
147148
return []

0 commit comments

Comments
 (0)