mirror of
https://github.com/status-im/PyGithub.git
synced 2026-08-31 10:51:14 +00:00
14 lines
279 B
Python
14 lines
279 B
Python
from GithubObject import *
|
|
|
|
GitTag = GithubObject(
|
|
"GitTag",
|
|
BaseUrl( lambda obj: obj._repo._baseUrl() + "/git/tags/" + obj.sha ),
|
|
InternalSimpleAttributes(
|
|
"tag", "sha", "url",
|
|
"message",
|
|
"tagger",
|
|
"object",
|
|
"_repo",
|
|
),
|
|
)
|