(self)
| 16 | |
| 17 | class GitHubGraphQL: |
| 18 | def __init__(self): |
| 19 | self._session: aiohttp.ClientSession | None = None |
| 20 | self._connector: aiohttp.TCPConnector | None = None |
| 21 | self._cache = TTLCache(maxsize=512, ttl=CACHE_TTL) |
| 22 | |
| 23 | @property |
| 24 | def owner(self) -> str: |