(method: str)
| 89 | results: dict[str, dict[str, Any]] = {} |
| 90 | |
| 91 | async def call(method: str) -> None: |
| 92 | results[method] = await client.send_raw_request(method, None) |
| 93 | |
| 94 | with anyio.fail_after(5): |
| 95 | async with anyio.create_task_group() as tg: # pragma: no branch |
nothing calls this directly
no test coverage detected