summaryrefslogtreecommitdiff
path: root/gitdb/object/__init__.py
blob: 09c1bcafdb0982cf7aafc1aa4269da8d8cf0539e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
"""
Import all submodules main classes into the package space
"""
import inspect

from base import *
from tag import *
from blob import *
from commit import *
from tree import *
from submodule import *

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