summaryrefslogtreecommitdiff
path: root/git/refs/reference.py
diff options
context:
space:
mode:
authorYobmod <yobmod@gmail.com>2021-07-31 22:26:20 +0100
committerYobmod <yobmod@gmail.com>2021-07-31 22:26:20 +0100
commit39d37d550963a6a64e66ba3d6b9f4b077270a3ad (patch)
tree0f5f7d75ffc4ac1d6abc689d6739d7077adf7d27 /git/refs/reference.py
parent2a350b57ce79a0e1b71623d1146c52918232e074 (diff)
downloadgitpython-39d37d550963a6a64e66ba3d6b9f4b077270a3ad.tar.gz
replace some TBDs wiht runtime types
Diffstat (limited to 'git/refs/reference.py')
-rw-r--r--git/refs/reference.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/git/refs/reference.py b/git/refs/reference.py
index a3647fb3..2a33fbff 100644
--- a/git/refs/reference.py
+++ b/git/refs/reference.py
@@ -8,7 +8,7 @@ from .symbolic import SymbolicReference, T_References
# typing ------------------------------------------------------------------
from typing import Any, Callable, Iterator, Type, Union, TYPE_CHECKING # NOQA
-from git.types import Commit_ish, PathLike, TBD, Literal, _T # NOQA
+from git.types import Commit_ish, PathLike, _T # NOQA
if TYPE_CHECKING:
from git.repo import Repo