aboutsummaryrefslogtreecommitdiffstats
path: root/pygithub3
diff options
context:
space:
mode:
Diffstat (limited to 'pygithub3')
-rw-r--r--pygithub3/github.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/pygithub3/github.py b/pygithub3/github.py
index 1d00d79..50b5a1a 100644
--- a/pygithub3/github.py
+++ b/pygithub3/github.py
@@ -27,9 +27,6 @@ class Github(object):
self._git_data = GitData(**config)
self._pull_requests = PullRequests(**config)
self._orgs = Org(**config)
- self._users = User(**config)
- self._repos = Repo(**config)
- self._gists = Gist(**config)
self._issues = Issue(**config)
@property
@@ -73,12 +70,14 @@ class Github(object):
"""
return self._pull_requests
+ @property
def orgs(self):
"""
:ref:`Orgs service <Orgs service>`
"""
return self._orgs
+ @property
def issues(self):
"""
:ref:`Issues service <Issues service>`