(self)
| 133 | return self._session is not None |
| 134 | |
| 135 | async def get_session(self) -> AsyncClientSession: |
| 136 | return await self.start() |
| 137 | |
| 138 | async def get_schema(self) -> graphql.GraphQLSchema: |
| 139 | client = (await self.get_session()).client |
no test coverage detected