mirror of
https://github.com/status-im/PyGithub.git
synced 2026-09-01 11:21:16 +00:00
11 lines
203 B
Python
11 lines
203 B
Python
from Commit import *
|
|
|
|
Tag = GithubObject(
|
|
"Tag",
|
|
InternalSimpleAttributes(
|
|
"name", "zipball_url", "tarball_url",
|
|
"_repo",
|
|
),
|
|
InternalObjectAttribute( "commit", Commit )
|
|
)
|