diff options
author | Sebastian Thiel <sebastian.thiel@icloud.com> | 2021-04-24 10:00:40 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-24 10:00:40 +0800 |
commit | 730177174bbc721fba8fbdcd28aa347b3ad75576 (patch) | |
tree | d9f504fe5a7b0e0c4332ae31b48adfd391d3e7f5 /git/repo/base.py | |
parent | 4119a576251448793c07ebd080534948cad2f170 (diff) | |
parent | 9448c082b158dcab960d33982e8189f2d2da4729 (diff) | |
download | gitpython-730177174bbc721fba8fbdcd28aa347b3ad75576.tar.gz |
Merge pull request #1218 from mgorny/typing-ext
Use typing-extensions only on Python < 3.8
Diffstat (limited to 'git/repo/base.py')
-rw-r--r-- | git/repo/base.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/git/repo/base.py b/git/repo/base.py index b1d0cdbc..ed0a810e 100644 --- a/git/repo/base.py +++ b/git/repo/base.py @@ -34,8 +34,8 @@ import gitdb # typing ------------------------------------------------------ +from git.compat.typing import Literal from git.types import TBD, PathLike -from typing_extensions import Literal from typing import (Any, BinaryIO, Callable, Dict, Iterator, List, Mapping, Optional, TextIO, Tuple, Type, Union, |