summaryrefslogtreecommitdiff
path: root/git/refs/reference.py
blob: cead66cee7685b54d1b8161582d18d4a92c6173b (plain)
1
2
3
4
5
6
7

from gitdb.ref.reference import Reference as GitDB_Reference
__all__ = ["Reference"]

class Reference(GitDB_Reference):
	__slots__ = tuple()
	pass