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 f71755b commit 5f476c2Copy full SHA for 5f476c2
dune_client/client_async.py
@@ -175,7 +175,6 @@ async def _get() -> Any:
175
headers=self.default_headers(),
176
params=params,
177
)
178
- print(response)
179
if raw:
180
return response
181
return await self._handle_response(response)
dune_client/models.py
@@ -312,7 +312,6 @@ class ResultsResponse:
312
@classmethod
313
def from_dict(cls, data: dict[str, str | int | ResultData]) -> ResultsResponse:
314
"""Constructor from dictionary. See unit test for sample input."""
315
- print(data)
316
assert isinstance(data["execution_id"], str)
317
assert isinstance(data["query_id"], int)
318
assert isinstance(data["state"], str)
0 commit comments