Skip to content

Commit 5f476c2

Browse files
remove print statements (#135)
Co-authored-by: Tim <[email protected]>
1 parent f71755b commit 5f476c2

File tree

2 files changed

+0
-2
lines changed

2 files changed

+0
-2
lines changed

dune_client/client_async.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,6 @@ async def _get() -> Any:
175175
headers=self.default_headers(),
176176
params=params,
177177
)
178-
print(response)
179178
if raw:
180179
return response
181180
return await self._handle_response(response)

dune_client/models.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -312,7 +312,6 @@ class ResultsResponse:
312312
@classmethod
313313
def from_dict(cls, data: dict[str, str | int | ResultData]) -> ResultsResponse:
314314
"""Constructor from dictionary. See unit test for sample input."""
315-
print(data)
316315
assert isinstance(data["execution_id"], str)
317316
assert isinstance(data["query_id"], int)
318317
assert isinstance(data["state"], str)

0 commit comments

Comments
 (0)