diff options
author | Yobmod <yobmod@gmail.com> | 2021-07-06 17:04:48 +0100 |
---|---|---|
committer | Yobmod <yobmod@gmail.com> | 2021-07-06 17:04:48 +0100 |
commit | de36cb6f0391fcf4d756909e0cec429599585700 (patch) | |
tree | 50646a02b3bdfac408f39b74a6d7c466f005756b /git | |
parent | f372187ade056a3069e68ba0a90bf53bd7d7e464 (diff) | |
download | gitpython-de36cb6f0391fcf4d756909e0cec429599585700.tar.gz |
UnMake subodule a forward ref in Index.base
Diffstat (limited to 'git')
-rw-r--r-- | git/index/base.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/git/index/base.py b/git/index/base.py index edb79edf..b54a19a7 100644 --- a/git/index/base.py +++ b/git/index/base.py @@ -22,6 +22,7 @@ from git.exc import ( ) from git.objects import ( Blob, + Submodule, Tree, Object, Commit, @@ -75,7 +76,6 @@ if TYPE_CHECKING: from git.repo import Repo from git.refs.reference import Reference from git.util import Actor - from git.objects import Submodule StageType = int |