mirror of
https://github.com/status-im/PyGithub.git
synced 2026-08-31 19:01:15 +00:00
13 lines
270 B
Python
13 lines
270 B
Python
from GithubObject import *
|
|
|
|
GitRef = GithubObject(
|
|
"GitRef",
|
|
BaseUrl( lambda obj: obj._repo._baseUrl() + "/git/" + obj.ref ),
|
|
InternalSimpleAttributes(
|
|
"ref", "url",
|
|
"object",
|
|
"_repo",
|
|
),
|
|
Editable( [ "sha" ], [ "force" ] ),
|
|
)
|