diff --git a/kick/http.py b/kick/http.py index f1f291c..432ce69 100644 --- a/kick/http.py +++ b/kick/http.py @@ -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: