mirror of
https://github.com/status-im/PyGithub.git
synced 2026-08-31 19:01:15 +00:00
11 lines
179 B
Python
11 lines
179 B
Python
from Commit import *
|
|
|
|
Branch = GithubObject(
|
|
"Branch",
|
|
InternalSimpleAttributes(
|
|
"name",
|
|
"_repo",
|
|
),
|
|
InternalObjectAttribute( "commit", Commit )
|
|
)
|