aboutsummaryrefslogtreecommitdiffstats
path: root/pygithub3/core/client.py
diff options
context:
space:
mode:
Diffstat (limited to 'pygithub3/core/client.py')
-rw-r--r--pygithub3/core/client.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pygithub3/core/client.py b/pygithub3/core/client.py
index ee7c97f..eadb18e 100644
--- a/pygithub3/core/client.py
+++ b/pygithub3/core/client.py
@@ -81,7 +81,7 @@ class Client(object):
def get(self, request, **kwargs):
response = self.request('get', request, **kwargs)
- assert response.status_code == 200
+ # there are valid GET responses that != 200
return response
def post(self, request, **kwargs):