Files
PyGithub/github/Branch.py
T

13 lines
212 B
Python

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