Files
PyGithub/github/GithubObjects/Tag.py
T
2012-03-14 22:56:08 +01:00

13 lines
236 B
Python

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