mirror of
https://github.com/status-im/PyGithub.git
synced 2026-08-31 19:01:15 +00:00
13 lines
236 B
Python
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 )
|
|
)
|