mirror of
https://github.com/status-im/PyGithub.git
synced 2026-08-31 19:01:15 +00:00
14 lines
338 B
Python
14 lines
338 B
Python
from NamedUser import *
|
|
|
|
GistComment = GithubObject(
|
|
"GistComment",
|
|
BaseUrl( lambda obj: "/gists/comments/" + str( obj.id ) ),
|
|
InternalSimpleAttributes(
|
|
"id", "url", "body", "created_at",
|
|
"updated_at",
|
|
),
|
|
InternalObjectAttribute( "user", NamedUser ),
|
|
Editable( [ "body" ], [] ),
|
|
Deletable(),
|
|
)
|