Files
PyGithub/github/Label.py
T

14 lines
341 B
Python

from GithubObject import *
Label = GithubObject(
"Label",
BaseUrl( lambda obj: obj._repo._baseUrl() + "/labels/" + obj._identity ),
Identity( lambda obj: urllib.quote( obj.name ) ),
InternalSimpleAttributes(
"url", "name", "color",
"_repo",
),
Editable( [ "name", "color" ], [] ),
Deletable(),
)