mirror of
https://github.com/carbon-language/carbon-lang.git
synced 2026-09-24 21:10:12 +01:00
Stop pulling the schema, it's optional and hits a github/gql incompatibility (not sure whose bug) (#306)
Should fix #300
This commit is contained in:
@@ -48,9 +48,7 @@ class Client(object):
|
||||
url="https://api.github.com/graphql",
|
||||
headers={"Authorization": "bearer %s" % parsed_args.access_token},
|
||||
)
|
||||
self._client = gql.Client(
|
||||
transport=transport, fetch_schema_from_transport=True
|
||||
)
|
||||
self._client = gql.Client(transport=transport)
|
||||
|
||||
def execute(self, query):
|
||||
"""Runs a query."""
|
||||
|
||||
Reference in New Issue
Block a user