Generate some repetitive doc files

This commit is contained in:
Vincent Jacques
2012-12-29 08:47:23 +01:00
parent d99b7ef577
commit abf0867543
108 changed files with 2603 additions and 2601 deletions
+13
View File
@@ -17,16 +17,29 @@ import github.GithubObject
class PullRequestMergeStatus(github.GithubObject.BasicGithubObject):
"""
This class represents PullRequestMergeStatuss as returned for example by http://developer.github.com/v3/todo
"""
@property
def merged(self):
"""
:type: bool
"""
return self._NoneIfNotSet(self._merged)
@property
def message(self):
"""
:type: string
"""
return self._NoneIfNotSet(self._message)
@property
def sha(self):
"""
:type: string
"""
return self._NoneIfNotSet(self._sha)
def _initAttributes(self):