blob: 38834436ed686757b7b51268de9cacf5723b08cf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
# blob.py
# Copyright (C) 2008, 2009 Michael Trier (mtrier@gmail.com) and contributors
#
# This module is part of GitPython and is released under
# the BSD License: http://www.opensource.org/licenses/bsd-license.php
from git.util import RepoAliasMixin
from gitdb.object.blob import Blob as GitDB_Blob
__all__ = ('Blob', )
class Blob(GitDB_Blob, RepoAliasMixin):
__slots__ = tuple()
|