diff options
author | Yobmod <yobmod@gmail.com> | 2021-07-06 16:51:34 +0100 |
---|---|---|
committer | Yobmod <yobmod@gmail.com> | 2021-07-06 16:51:34 +0100 |
commit | 33ffd0b2ed117d043fe828e5f2eabe5c8f8b0b66 (patch) | |
tree | 1cc70efce53cb15cc9f43eac22111386a84c59b2 | |
parent | 06eca0b84a4538c642c5e1afa2f3441a96bef444 (diff) | |
download | gitpython-33ffd0b2ed117d043fe828e5f2eabe5c8f8b0b66.tar.gz |
Make subodule a forward ref in Index.base2
-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 b37883a6..5a564b8c 100644 --- a/git/index/base.py +++ b/git/index/base.py @@ -75,7 +75,7 @@ if TYPE_CHECKING: from git.repo import Repo from git.refs.reference import Reference from git.util import Actor - from git.objects.submodule.base import Submodule + from git.objects import Submodule StageType = int |