We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents cf7a060 + 4f90171 commit bdccd5bCopy full SHA for bdccd5b
duneanalytics/duneanalytics.py
@@ -102,7 +102,7 @@ def query_result_id(self, query_id):
102
response = self.session.post(GRAPH_URL, json=query_data)
103
if response.status_code == 200:
104
data = response.json()
105
- print(data)
+ # print(data)
106
if 'errors' in data:
107
return None
108
result_id = data.get('data').get('get_result').get('result_id')
@@ -130,7 +130,7 @@ def query_result(self, result_id):
130
131
132
133
134
return data
135
else:
136
print(response.text)
0 commit comments