(self)
| 48 | |
| 49 | def _transport() -> tuple[Transport, _Process]: |
| 50 | transport = Transport(ClientConfig(token="t", base_url="https://relay", timeout_ms=1000), "/none") |
| 51 | process = _Process() |
| 52 | transport._process = process # type: ignore[assignment] |
| 53 | transport._reader_task = asyncio.create_task(transport._read_loop()) |
| 54 | return transport, process |
nothing calls this directly
no outgoing calls
no test coverage detected