summaryrefslogtreecommitdiff
path: root/git/refs/reference.py
diff options
context:
space:
mode:
authorYobmod <yobmod@gmail.com>2021-07-24 17:10:32 +0100
committerYobmod <yobmod@gmail.com>2021-07-24 17:10:32 +0100
commite6345d60a7926bd413d3d7238ba06f7c81a7faf9 (patch)
tree3f776c6a46bafaec663483adf05d6f96cead7a50 /git/refs/reference.py
parent0c1446da2d1ce0382cbc65d7a2aad4483783ae74 (diff)
downloadgitpython-e6345d60a7926bd413d3d7238ba06f7c81a7faf9.tar.gz
Replace all Typeguard with cast, revert update to typing-extensions==3.10.0
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 f584bb54..64662281 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, List, Match, Optional, Tuple, Type, TypeVar, Union, TYPE_CHECKING # NOQA
-from git.types import Commit_ish, PathLike, TBD, Literal, TypeGuard, _T # NOQA
+from git.types import Commit_ish, PathLike, TBD, Literal, _T # NOQA
if TYPE_CHECKING:
from git.repo import Repo