|
5 | 5 | # the BSD License: http://www.opensource.org/licenses/bsd-license.php
|
6 | 6 |
|
7 | 7 | import re
|
| 8 | +import sys |
8 | 9 | from git.cmd import handle_process_output
|
9 | 10 | from git.compat import defenc
|
10 | 11 | from git.util import finalize_process, hex_to_bin
|
|
16 | 17 | # typing ------------------------------------------------------------------
|
17 | 18 |
|
18 | 19 | from typing import Any, Iterator, List, Match, Optional, Tuple, Type, Union, TYPE_CHECKING
|
19 | | -from typing_extensions import Final, Literal |
| 20 | +from git.compat.typing import Final, Literal |
20 | 21 | from git.types import TBD
|
21 | 22 |
|
22 | 23 | if TYPE_CHECKING:
|
|
0 commit comments