diff options
author | yobmod <yobmod@gmail.com> | 2021-05-08 18:31:38 +0100 |
---|---|---|
committer | yobmod <yobmod@gmail.com> | 2021-05-08 18:31:38 +0100 |
commit | 37cef2340d3e074a226c0e81eaf000b5b90dfa55 (patch) | |
tree | 9867f5a8b543000e56c70860ad59637d1fb33bbe /git/compat/typing.py | |
parent | 6a2f5d05f4a8e3427d6dd2a5981f148a9f6bef84 (diff) | |
download | gitpython-37cef2340d3e074a226c0e81eaf000b5b90dfa55.tar.gz |
flake8 fixes
Diffstat (limited to 'git/compat/typing.py')
-rw-r--r-- | git/compat/typing.py | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/git/compat/typing.py b/git/compat/typing.py deleted file mode 100644 index 925c5ba2..00000000 --- a/git/compat/typing.py +++ /dev/null @@ -1,13 +0,0 @@ -# -*- coding: utf-8 -*- -# config.py -# Copyright (C) 2021 Michael Trier (mtrier@gmail.com) and contributors -# -# This module is part of GitPython and is released under -# the BSD License: http://www.opensource.org/licenses/bsd-license.php - -import sys - -if sys.version_info[:2] >= (3, 8): - from typing import Final, Literal # noqa: F401 -else: - from typing_extensions import Final, Literal # noqa: F401 |