Files
PyGithub/github/GithubObjects/Branch.py
T

11 lines
179 B
Python

from Commit import *
Branch = GithubObject(
"Branch",
InternalSimpleAttributes(
"name",
"_repo",
),
InternalObjectAttribute( "commit", Commit )
)