Make typing_extensions only required for 3.7

Literal was introduced in Python 3.8.
This commit is contained in:
Jelle van der Waa 2024-05-25 19:26:26 +02:00
parent 109d7d2f01
commit 359226c26b
2 changed files with 5 additions and 2 deletions

View file

@ -1,4 +1,7 @@
from typing_extensions import Literal
try:
from typing import Literal
except ImportError:
from typing_extensions import Literal
AnsiMode = Literal['default', 'ansi', '8bit', 'rgb']
LightDark = Literal['light', 'dark']