summaryrefslogtreecommitdiff
path: root/git/repo/base.py
diff options
context:
space:
mode:
Diffstat (limited to 'git/repo/base.py')
-rw-r--r--git/repo/base.py3
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']
# -----------------------------------------------------------