mirror of
https://github.com/status-im/PyGithub.git
synced 2026-08-31 19:01:15 +00:00
11 lines
274 B
Python
11 lines
274 B
Python
class SimpleScalarAttributes:
|
|
def __init__( self, *attributes ):
|
|
self.__attributes = attributes
|
|
|
|
def GithubObject( *attributes ):
|
|
class GithubObject:
|
|
def __init__( self, github, attributes, lazy ):
|
|
pass
|
|
|
|
return GithubObject
|