diff options
author | Yobmod <yobmod@gmail.com> | 2021-06-30 22:53:23 +0100 |
---|---|---|
committer | Yobmod <yobmod@gmail.com> | 2021-06-30 22:53:23 +0100 |
commit | 8fd5414697724feff782e952a42ca5d9651418bc (patch) | |
tree | 5066c9e6c41b88f56b9e9f08da17714e51c95fcf | |
parent | 52665218a64405e1cb6c90b6ef28720065409041 (diff) | |
download | gitpython-8fd5414697724feff782e952a42ca5d9651418bc.tar.gz |
Flake 8 fix
-rw-r--r-- | git/types.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/git/types.py b/git/types.py index 721c6300..fb63f46e 100644 --- a/git/types.py +++ b/git/types.py @@ -8,7 +8,7 @@ from typing import Dict, Union, Any, TYPE_CHECKING if sys.version_info[:2] >= (3, 8): - from typing import Final, Literal, SupportsIndex, TypedDict, Protocol # noqa: F401 + from typing import Final, Literal, SupportsIndex, TypedDict, Protocol # noqa: F401 else: from typing_extensions import Final, Literal, SupportsIndex, TypedDict, Protocol # noqa: F401 |