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