diff options
author | Sebastian Thiel <sebastian.thiel@icloud.com> | 2021-05-12 09:53:42 +0800 |
---|---|---|
committer | Sebastian Thiel <sebastian.thiel@icloud.com> | 2021-05-12 09:53:42 +0800 |
commit | 2448ac4ca337665eb22b9dd5ca096ef625a8f52b (patch) | |
tree | 9867f5a8b543000e56c70860ad59637d1fb33bbe /git/compat/typing.py | |
parent | 96f8f17d5d63c0e0c044ac3f56e94a1aa2e45ec3 (diff) | |
parent | 37cef2340d3e074a226c0e81eaf000b5b90dfa55 (diff) | |
download | gitpython-2448ac4ca337665eb22b9dd5ca096ef625a8f52b.tar.gz |
Merge branch 'addtypes'
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 |