diff options
author | Dominic <yobmod@gmail.com> | 2021-06-25 21:40:41 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-25 21:40:41 +0100 |
commit | 17c750a0803ae222f1cdaf3d6282a7e1b2046adb (patch) | |
tree | b273e9cdc574155bf5ddac1d4b4adb2a8197356b /git/objects/util.py | |
parent | eff48b8ba25a0ea36a7286aa16d8888315eb1205 (diff) | |
download | gitpython-17c750a0803ae222f1cdaf3d6282a7e1b2046adb.tar.gz |
flake8 fix
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 7736a0b2..79bf73ae 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', bound=T_Iterableobj) +T_Iterableobj = typevar('T_Iterableobj') # -------------------------------------------------------------------- |