aboutsummaryrefslogtreecommitdiffstats
path: root/pygithub3/github.py
diff options
context:
space:
mode:
authorConor Branagan <conor.branagan@gmail.com>2012-04-11 17:11:08 -0400
committerAlejandro Gómez <alejandroogomez@gmail.com>2012-05-27 19:54:28 +0200
commit61c438619634c80a9fb5579beb0a6609eaf00f2d (patch)
tree1f4897572042ff397ee02e24b58215316fefdd5c /pygithub3/github.py
parentMerge pull request #11 from dsc/patch-1 (diff)
downloadpython-github3-61c438619634c80a9fb5579beb0a6609eaf00f2d.tar.xz
python-github3-61c438619634c80a9fb5579beb0a6609eaf00f2d.zip
Add issues service for issues, comments and events. has tests and updated docs
Diffstat (limited to 'pygithub3/github.py')
-rw-r--r--pygithub3/github.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/pygithub3/github.py b/pygithub3/github.py
index 87c4a6d..5f95505 100644
--- a/pygithub3/github.py
+++ b/pygithub3/github.py
@@ -19,11 +19,16 @@ class Github(object):
from pygithub3.services.gists import Gist
from pygithub3.services.git_data import GitData
from pygithub3.services.pull_requests import PullRequests
+ from pygithub3.services.issues import Issue
self._users = User(**config)
self._repos = Repo(**config)
self._gists = Gist(**config)
self._git_data = GitData(**config)
self._pull_requests = PullRequests(**config)
+ self._users = User(**config)
+ self._repos = Repo(**config)
+ self._gists = Gist(**config)
+ self._issues = Issue(**config)
@property
def remaining_requests(self):