We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6752fad commit 18b75d9Copy full SHA for 18b75d9
1 file changed
git/types.py
@@ -6,6 +6,11 @@
6
import sys
7
from typing import Union, Any
8
9
+if sys.version_info[:2] >= (3, 8):
10
+ from typing import Final, Literal # noqa: F401
11
+else:
12
+ from typing_extensions import Final, Literal # noqa: F401
13
+
14
15
TBD = Any
16
0 commit comments