mirror of
https://github.com/status-im/PyGithub.git
synced 2026-08-31 19:01:15 +00:00
14 lines
364 B
Python
14 lines
364 B
Python
from GithubObject import *
|
|
|
|
from NamedUser import NamedUser
|
|
|
|
IssueEvent = GithubObject(
|
|
"IssueEvent",
|
|
BaseUrl( lambda obj: obj._repo._baseUrl() + "/issues/events/" + str( obj.id ) ),
|
|
InternalSimpleAttributes(
|
|
"id", "url", "created_at", "issue", "event", "commit_id",
|
|
"_repo",
|
|
),
|
|
InternalObjectAttribute( "actor", NamedUser ),
|
|
)
|