diff options
author | Dominic <yobmod@gmail.com> | 2021-06-25 21:43:10 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-25 21:43:10 +0100 |
commit | ff56dbbfceef2211087aed2619b7da2e42f235e4 (patch) | |
tree | 69c35bf37b36fa31f062c5532e335e7c2d94b9cd /git/objects/util.py | |
parent | 17c750a0803ae222f1cdaf3d6282a7e1b2046adb (diff) | |
download | gitpython-ff56dbbfceef2211087aed2619b7da2e42f235e4.tar.gz |
fix typo
Diffstat (limited to 'git/objects/util.py')
-rw-r--r-- | git/objects/util.py | 2 |
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 |