aboutsummaryrefslogtreecommitdiffstats
path: root/pygithub3/services
diff options
context:
space:
mode:
Diffstat (limited to 'pygithub3/services')
-rw-r--r--pygithub3/services/base.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/pygithub3/services/base.py b/pygithub3/services/base.py
index 84379b0..1d33470 100644
--- a/pygithub3/services/base.py
+++ b/pygithub3/services/base.py
@@ -41,6 +41,10 @@ class Service(object):
self._client = Client(**config)
self.request_builder = Factory()
+ @property
+ def remaining_requests(self):
+ return Client.remaining_requests
+
def get_user(self):
return self._client.user