diff options
author | Sebastian Thiel <sebastian.thiel@icloud.com> | 2021-05-13 10:25:42 +0800 |
---|---|---|
committer | Sebastian Thiel <sebastian.thiel@icloud.com> | 2021-05-13 10:25:42 +0800 |
commit | 34356322ca137ae6183dfdd8ea6634b64512591a (patch) | |
tree | 0dfd3536a1b207d7518c27c7ccae99fe434ba56f /git/repo/base.py | |
parent | 2448ac4ca337665eb22b9dd5ca096ef625a8f52b (diff) | |
parent | fed0cadffd20e48bed8e78fd51a245ad666c54f6 (diff) | |
download | gitpython-34356322ca137ae6183dfdd8ea6634b64512591a.tar.gz |
Merge branch 'addtypes'
Diffstat (limited to 'git/repo/base.py')
-rw-r--r-- | git/repo/base.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/git/repo/base.py b/git/repo/base.py index 94c6e30b..ce5f6bd0 100644 --- a/git/repo/base.py +++ b/git/repo/base.py @@ -34,7 +34,7 @@ import gitdb # typing ------------------------------------------------------ -from git.types import TBD, PathLike, Literal +from git.types import TBD, PathLike, Lit_config_levels from typing import (Any, BinaryIO, Callable, Dict, Iterator, List, Mapping, Optional, TextIO, Tuple, Type, Union, @@ -45,7 +45,6 @@ if TYPE_CHECKING: # only needed for types from git.refs.symbolic import SymbolicReference from git.objects import TagObject, Blob, Tree # NOQA: F401 -Lit_config_levels = Literal['system', 'global', 'user', 'repository'] # ----------------------------------------------------------- |