diff options
author | Dominic <yobmod@gmail.com> | 2021-06-25 21:44:54 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-25 21:44:54 +0100 |
commit | 5d7b8ba9f2e9298496232e4ae66bd904a1d71001 (patch) | |
tree | 5f4fd00ad13fa5455dc876ab9cb9cc4f9b66bdfc /git/objects/util.py | |
parent | ff56dbbfceef2211087aed2619b7da2e42f235e4 (diff) | |
download | gitpython-5d7b8ba9f2e9298496232e4ae66bd904a1d71001.tar.gz |
another 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 4609a80b..8b8148a9 100644 --- a/git/objects/util.py +++ b/git/objects/util.py @@ -30,7 +30,7 @@ if TYPE_CHECKING: from .tree import Tree from subprocess import Popen -T_Iterableobj = typevar('T_Iterableobj') +T_Iterableobj = TypeVar('T_Iterableobj') # -------------------------------------------------------------------- |