aboutsummaryrefslogtreecommitdiffstats
path: root/pygithub3/requests
diff options
context:
space:
mode:
authorDavid Medina <davidmedina9@gmail.com>2012-06-16 12:36:37 +0200
committerDavid Medina <davidmedina9@gmail.com>2012-06-16 12:36:41 +0200
commit488252cbc150a2ed8e86754a9e18a2fc27b8ec5c (patch)
treeeabdad62bb51819e1474d4d12c2d32e60ec28dce /pygithub3/requests
parentissues.milestones service (diff)
downloadpython-github3-488252cbc150a2ed8e86754a9e18a2fc27b8ec5c.tar.xz
python-github3-488252cbc150a2ed8e86754a9e18a2fc27b8ec5c.zip
Remove list_milestones from repo service
in favour of issues.milestones.list() to maintain the same structure with Github API docs
Diffstat (limited to 'pygithub3/requests')
-rw-r--r--pygithub3/requests/repos/__init__.py10
1 files changed, 0 insertions, 10 deletions
diff --git a/pygithub3/requests/repos/__init__.py b/pygithub3/requests/repos/__init__.py
index 758fe5b..a1b3607 100644
--- a/pygithub3/requests/repos/__init__.py
+++ b/pygithub3/requests/repos/__init__.py
@@ -80,13 +80,3 @@ class List_branches(Request):
uri = 'repos/{user}/{repo}/branches'
resource = Branch
-
-
-class List_milestones(Request):
-
- uri = 'repos/{user}/{repo}/milestones'
- resource = Milestone
- body_schema = {
- 'schema': ('state', 'sort', 'direction'),
- 'required': ()
- }