[+] Python 3.7 3.8 support

This commit is contained in:
Azalea (on HyDEV-Daisy) 2022-04-10 22:50:11 -04:00
parent 9ec3f74c0d
commit b9dfa5e200
6 changed files with 19 additions and 7 deletions

View file

@ -1,5 +1,8 @@
from __future__ import annotations
import colorsys
from typing import NamedTuple, Literal
from typing import NamedTuple
from typing_extensions import Literal
AnsiMode = Literal['default', 'ansi', '8bit', 'rgb']