summaryrefslogtreecommitdiff
path: root/git/objects/util.py
diff options
context:
space:
mode:
authorDominic <yobmod@gmail.com>2021-06-25 21:43:10 +0100
committerGitHub <noreply@github.com>2021-06-25 21:43:10 +0100
commitff56dbbfceef2211087aed2619b7da2e42f235e4 (patch)
tree69c35bf37b36fa31f062c5532e335e7c2d94b9cd /git/objects/util.py
parent17c750a0803ae222f1cdaf3d6282a7e1b2046adb (diff)
downloadgitpython-ff56dbbfceef2211087aed2619b7da2e42f235e4.tar.gz
fix typo
Diffstat (limited to 'git/objects/util.py')
-rw-r--r--git/objects/util.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/git/objects/util.py b/git/objects/util.py
index 79bf73ae..4609a80b 100644
--- a/git/objects/util.py
+++ b/git/objects/util.py
@@ -19,7 +19,7 @@ import calendar
from datetime import datetime, timedelta, tzinfo
# typing ------------------------------------------------------------
-from typing import (Any, Callable, Deque, Iterator, typevar, TYPE_CHECKING, Tuple, Type, Union, cast)
+from typing import (Any, Callable, Deque, Iterator, TypeVar, TYPE_CHECKING, Tuple, Type, Union, cast)
if TYPE_CHECKING:
from io import BytesIO, StringIO