aboutsummaryrefslogtreecommitdiffstats
path: root/pygithub3/services/base.py
diff options
context:
space:
mode:
Diffstat (limited to 'pygithub3/services/base.py')
-rw-r--r--pygithub3/services/base.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/pygithub3/services/base.py b/pygithub3/services/base.py
index 9f7279a..84379b0 100644
--- a/pygithub3/services/base.py
+++ b/pygithub3/services/base.py
@@ -83,6 +83,9 @@ class Service(object):
kwargs['repo'] = kwargs['repo'] or self.get_repo()
return self.request_builder(request, **kwargs)
+ def _request(self, verb, request, **kwargs):
+ self._client.request(verb, request, **kwargs)
+
def _bool(self, request, **kwargs):
try:
self._client.head(request, **kwargs)