summaryrefslogtreecommitdiff
path: root/lib/git/objects/__init__.py
blob: ef6b2ea4367245f9c5480d77c9652ff74e539687 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
"""
Import all submodules main classes into the package space
"""
import inspect
from base import *
from tag import *
from blob import *
from tree import *
from commit import *
from submodule import *

__all__ = [ name for name, obj in locals().items()
            if not (name.startswith('_') or inspect.ismodule(obj)) ]