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.
1 parent b563d55 commit 4f90171Copy full SHA for 4f90171
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')
@@ -133,5 +133,5 @@ def query_result(self, result_id):
133
# print(data)
134
return data
135
else:
136
- # print(response.text)
+ print(response.text)
137
return {}
0 commit comments