Refactor XxxGithubObject

This commit is contained in:
Vincent Jacques
2013-03-14 12:31:36 +01:00
parent 2defd7b818
commit fa43e95268
51 changed files with 62 additions and 60 deletions
+2 -2
View File
@@ -16,13 +16,13 @@
import github.GithubObject
class RepositoryKey(github.GithubObject.GithubObject):
class RepositoryKey(github.GithubObject.CompletableGithubObject):
"""
This class represents RepositoryKeys as returned for example by http://developer.github.com/v3/todo
"""
def __init__(self, requester, attributes, completed, repoUrl):
github.GithubObject.GithubObject.__init__(self, requester, attributes, completed)
github.GithubObject.CompletableGithubObject.__init__(self, requester, attributes, completed)
self.__repoUrl = repoUrl
@property