Skip to content

Commit

Permalink
removed unnecessary print statements
Browse files Browse the repository at this point in the history
  • Loading branch information
gub-7 committed Nov 23, 2024
1 parent 91f4b1e commit 213b9b0
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion kick/http.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,6 @@

async def json_or_text(response: ClientResponse, /) -> Union[dict[str, Any], str]:
text = await response.text()
print(text)
try:
return json.loads(text)
except json.JSONDecodeError:
Expand Down

0 comments on commit 213b9b0

Please sign in to comment.