There was an error while loading. Please reload this page.
2 parents ebe8f64 + 9519f18 commit 7cf2d5fCopy full SHA for 7cf2d5f
7 files changed
lib/git/objects/__init__.py
@@ -3,11 +3,18 @@
3
"""
4
import inspect
5
from base import *
6
+# Fix import dependency - add IndexObject to the util module, so that it can be
7
+# imported by the submodule.base
8
+import submodule.util
9
+submodule.util.IndexObject = IndexObject
10
+from submodule.base import *
11
+from submodule.root import *
12
+
13
+# must come after submodule was made available
14
from tag import *
15
from blob import *
-from tree import *
16
from commit import *
-from submodule import *
17
+from tree import *
18
from util import Actor
19
20
__all__ = [ name for name, obj in locals().items()
lib/git/objects/submodule/__init__.py
@@ -0,0 +1 @@
1
0 commit comments