mirror of
https://github.com/status-im/PyGithub.git
synced 2026-08-31 19:01:15 +00:00
13 lines
318 B
Python
13 lines
318 B
Python
from GithubObject import *
|
|
|
|
RepositoryKey = GithubObject(
|
|
"RepositoryKey",
|
|
BaseUrl( lambda obj: obj._repo._baseUrl() + "/keys/" + str( obj.id ) ),
|
|
InternalSimpleAttributes(
|
|
"url", "id", "title", "key",
|
|
"_repo",
|
|
),
|
|
Editable( Parameters( [ "title", "key" ], [] ) ),
|
|
Deletable()
|
|
)
|