()
| 1171 | async with anyio.create_task_group() as tg: # pragma: no branch |
| 1172 | |
| 1173 | async def run_tool(): |
| 1174 | metadata = ClientMessageMetadata( |
| 1175 | on_resumption_token_update=on_resumption_token_update, |
| 1176 | ) |
| 1177 | await session.send_request( |
| 1178 | types.CallToolRequest( |
| 1179 | params=types.CallToolRequestParams( |
| 1180 | name="wait_for_lock_with_notification", arguments={} |
| 1181 | ), |
| 1182 | ), |
| 1183 | types.CallToolResult, |
| 1184 | metadata=metadata, |
| 1185 | ) |
| 1186 | |
| 1187 | tg.start_soon(run_tool) |
| 1188 |
nothing calls this directly
no test coverage detected