mirror of
https://github.com/status-im/PyGithub.git
synced 2026-08-31 19:01:15 +00:00
10 lines
219 B
Python
10 lines
219 B
Python
class InputFileContent( object ):
|
|
def __init__( self, content ):
|
|
self.__content = content
|
|
|
|
@property
|
|
def _identity( self ):
|
|
return {
|
|
"content": self.__content,
|
|
}
|