This commit is contained in:
Vincent Jacques
2012-11-27 21:14:30 +01:00
parent c8c889f5a9
commit 54554b280d
61 changed files with 385 additions and 33 deletions
+7
View File
@@ -16,6 +16,13 @@
class InputFileContent(object):
def __init__(self, content):
"""
Please edit this generated docstring for method :func:`github.InputFileContent.InputFileContent.__init__`.
:param content: string
"""
assert isinstance(content, (str, unicode)), content
self.__content = content
@property