Files
PyGithub/github/GithubObjects/Tag.py
T

11 lines
203 B
Python

from Commit import *
Tag = GithubObject(
"Tag",
InternalSimpleAttributes(
"name", "zipball_url", "tarball_url",
"_repo",
),
InternalObjectAttribute( "commit", Commit )
)