diff options
author | Yobmod <yobmod@gmail.com> | 2021-07-24 22:05:06 +0100 |
---|---|---|
committer | Yobmod <yobmod@gmail.com> | 2021-07-24 22:05:06 +0100 |
commit | d812818cb20c39e0bb5609186214ea4bcc18c047 (patch) | |
tree | 59caeb4d7a9d0ee97553ce09ad5c19e85d76134d /git/index/typ.py | |
parent | 2bc2ac02e270404fcb609eeacc4feea6146b9d2e (diff) | |
download | gitpython-d812818cb20c39e0bb5609186214ea4bcc18c047.tar.gz |
Rmv with_metaclass shim, make section constraint generic wrt its configparser type
Diffstat (limited to 'git/index/typ.py')
-rw-r--r-- | git/index/typ.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/git/index/typ.py b/git/index/typ.py index 5b2ad5f6..46f1b077 100644 --- a/git/index/typ.py +++ b/git/index/typ.py @@ -82,7 +82,8 @@ class BaseIndexEntry(BaseIndexEntryHelper): As the first 4 data members match exactly to the IndexEntry type, methods expecting a BaseIndexEntry can also handle full IndexEntries even if they - use numeric indices for performance reasons. """ + use numeric indices for performance reasons. + """ def __new__(cls, inp_tuple: Union[Tuple[int, bytes, int, PathLike], Tuple[int, bytes, int, PathLike, bytes, bytes, int, int, int, int, int]] |