(self, conn: ConnectParams, cfg: ConnectConfig | None = None)
| 190 | """Establish a GraphQL client connection to the Dagger API server.""" |
| 191 | |
| 192 | def __init__(self, conn: ConnectParams, cfg: ConnectConfig | None = None): |
| 193 | self.session = ClientSession(conn, cfg) |
| 194 | |
| 195 | |
| 196 | class SharedConnection(BaseConnection): |
nothing calls this directly
no test coverage detected