diff options
author | Austin Scola <austinscola@gmail.com> | 2022-06-21 09:19:54 -0400 |
---|---|---|
committer | Austin Scola <austinscola@gmail.com> | 2022-06-21 09:19:54 -0400 |
commit | d17136574ef23050fe3271e51a8b811f96544b17 (patch) | |
tree | bb4f0337dce2bd7d68c76cae0152653e3f3c9cd7 /git/index/typ.py | |
parent | a6ce118d6e4ade2bc01182b743f87c43a7ee8fa7 (diff) | |
download | gitpython-d17136574ef23050fe3271e51a8b811f96544b17.tar.gz |
Move stage type def
Diffstat (limited to 'git/index/typ.py')
-rw-r--r-- | git/index/typ.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/git/index/typ.py b/git/index/typ.py index d9040e10..5264f370 100644 --- a/git/index/typ.py +++ b/git/index/typ.py @@ -4,7 +4,6 @@ from binascii import b2a_hex from .util import pack, unpack from git.objects import Blob -from git.index.base import StageType # typing ---------------------------------------------------------------------- @@ -16,9 +15,11 @@ from git.types import PathLike if TYPE_CHECKING: from git.repo import Repo +StageType = int + # --------------------------------------------------------------------------------- -__all__ = ("BlobFilter", "BaseIndexEntry", "IndexEntry") +__all__ = ("BlobFilter", "BaseIndexEntry", "IndexEntry", "StageType") # { Invariants CE_NAMEMASK = 0x0FFF |