Skip to content

Commit

Permalink
remove print statements (#135)
Browse files Browse the repository at this point in the history
Co-authored-by: Tim <[email protected]>
  • Loading branch information
TimEconometrics and devpacts authored Sep 26, 2024
1 parent f71755b commit 5f476c2
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion dune_client/client_async.py
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,6 @@ async def _get() -> Any:
headers=self.default_headers(),
params=params,
)
print(response)
if raw:
return response
return await self._handle_response(response)
Expand Down
1 change: 0 additions & 1 deletion dune_client/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -312,7 +312,6 @@ class ResultsResponse:
@classmethod
def from_dict(cls, data: dict[str, str | int | ResultData]) -> ResultsResponse:
"""Constructor from dictionary. See unit test for sample input."""
print(data)
assert isinstance(data["execution_id"], str)
assert isinstance(data["query_id"], int)
assert isinstance(data["state"], str)
Expand Down

0 comments on commit 5f476c2

Please sign in to comment.