mirror of
https://github.com/status-im/PyGithub.git
synced 2026-08-31 19:01:15 +00:00
12 lines
328 B
Python
12 lines
328 B
Python
from NamedUser import *
|
|
|
|
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 ),
|
|
)
|