diff options
author | 2012-04-13 16:31:16 -0400 | |
---|---|---|
committer | 2012-05-27 19:54:28 +0200 | |
commit | 28b0668168e7662d0be8fbf3abedc15e597d178d (patch) | |
tree | 583cefb922187e19f3e4ed47b59dfaa30cc09e2d /pygithub3/github.py | |
parent | Add issues service for issues, comments and events. has tests and updated docs (diff) | |
download | python-github3-28b0668168e7662d0be8fbf3abedc15e597d178d.tar.xz python-github3-28b0668168e7662d0be8fbf3abedc15e597d178d.zip |
Use github.issues for the issues service
Diffstat (limited to 'pygithub3/github.py')
-rw-r--r-- | pygithub3/github.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/pygithub3/github.py b/pygithub3/github.py index 5f95505..20ec258 100644 --- a/pygithub3/github.py +++ b/pygithub3/github.py @@ -70,3 +70,9 @@ class Github(object): :ref:`Pull Requests service <Pull Requests service>` """ return self._pull_requests + + def issues(self): + """ + :ref:`Issues service <Issues service>` + """ + return self._issues |