Files
PyGithub/github/GithubObjects/Branch.py
T
2012-03-14 22:56:08 +01:00

13 lines
212 B
Python

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