mirror of
https://github.com/status-im/PyGithub.git
synced 2026-08-31 10:51:14 +00:00
13 lines
212 B
Python
13 lines
212 B
Python
from GithubObject import *
|
|
|
|
from Commit import Commit
|
|
|
|
Branch = GithubObject(
|
|
"Branch",
|
|
InternalSimpleAttributes(
|
|
"name",
|
|
"_repo",
|
|
),
|
|
InternalObjectAttribute( "commit", Commit )
|
|
)
|