From 1a8cfd18ff4ef7697713e9dcf0769acfe0de2700 Mon Sep 17 00:00:00 2001 From: RGBCube <78925721+RGBCube@users.noreply.github.com> Date: Sat, 25 Jun 2022 14:24:08 +0300 Subject: [PATCH] Remove debug print --- github/internals/http.py | 1 - 1 file changed, 1 deletion(-) diff --git a/github/internals/http.py b/github/internals/http.py index 97a2a80..b264078 100644 --- a/github/internals/http.py +++ b/github/internals/http.py @@ -202,7 +202,6 @@ class HTTPClient: if 200 <= request.status <= 299: return await request.json() - print(await request.json()) raise error_from_request(request) # === ROUTES === #