summaryrefslogtreecommitdiff
path: root/git/refs/reference.py
diff options
context:
space:
mode:
authorSebastian Thiel <sebastian.thiel@icloud.com>2021-07-25 10:22:22 +0800
committerGitHub <noreply@github.com>2021-07-25 10:22:22 +0800
commitc5e6ae25b9169e5ef070d791fb9d620e2357e24e (patch)
tree680964b9eb8cc102cd1e79f8aeadde6620fc0eb6 /git/refs/reference.py
parent0c1446da2d1ce0382cbc65d7a2aad4483783ae74 (diff)
parentbe7bb868279f61d55594059690904baabe30503c (diff)
downloadgitpython-c5e6ae25b9169e5ef070d791fb9d620e2357e24e.tar.gz
Merge pull request #1298 from Yobmod/main
Revert use of Typeguard and therefore typing-extensions==3.10.0.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