diff options
author | Sebastian Thiel <sebastian.thiel@icloud.com> | 2021-05-12 09:53:42 +0800 |
---|---|---|
committer | Sebastian Thiel <sebastian.thiel@icloud.com> | 2021-05-12 09:53:42 +0800 |
commit | 2448ac4ca337665eb22b9dd5ca096ef625a8f52b (patch) | |
tree | 9867f5a8b543000e56c70860ad59637d1fb33bbe /git/diff.py | |
parent | 96f8f17d5d63c0e0c044ac3f56e94a1aa2e45ec3 (diff) | |
parent | 37cef2340d3e074a226c0e81eaf000b5b90dfa55 (diff) | |
download | gitpython-2448ac4ca337665eb22b9dd5ca096ef625a8f52b.tar.gz |
Merge branch 'addtypes'
Diffstat (limited to 'git/diff.py')
-rw-r--r-- | git/diff.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/git/diff.py b/git/diff.py index 943916ea..5a7b189f 100644 --- a/git/diff.py +++ b/git/diff.py @@ -16,8 +16,7 @@ from .objects.util import mode_str_to_int # typing ------------------------------------------------------------------ from typing import Any, Iterator, List, Match, Optional, Tuple, Type, Union, TYPE_CHECKING -from git.compat.typing import Final, Literal -from git.types import TBD +from git.types import TBD, Final, Literal if TYPE_CHECKING: from .objects.tree import Tree |