constants: import TypeAlias from typing_extensions (py3.9 compat)

This commit is contained in:
InsanePrawn 2022-02-20 20:21:23 +01:00
parent 08d7ce8862
commit 2733d49eab
2 changed files with 3 additions and 1 deletions

View file

@ -1,4 +1,5 @@
from typing import TypeAlias, TypedDict from typing_extensions import TypeAlias
from typing import TypedDict
FASTBOOT = 'fastboot' FASTBOOT = 'fastboot'
FLASH_PARTS = { FLASH_PARTS = {

View file

@ -2,3 +2,4 @@ click==8.0.1
appdirs==1.4.4 appdirs==1.4.4
joblib==1.0.1 joblib==1.0.1
toml toml
typing_extensions