diff options
author | yobmod <yobmod@gmail.com> | 2021-05-08 18:31:38 +0100 |
---|---|---|
committer | yobmod <yobmod@gmail.com> | 2021-05-08 18:31:38 +0100 |
commit | 37cef2340d3e074a226c0e81eaf000b5b90dfa55 (patch) | |
tree | 9867f5a8b543000e56c70860ad59637d1fb33bbe /git/diff.py | |
parent | 6a2f5d05f4a8e3427d6dd2a5981f148a9f6bef84 (diff) | |
download | gitpython-37cef2340d3e074a226c0e81eaf000b5b90dfa55.tar.gz |
flake8 fixes
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 |