miss import _AnnotatedAlias

This commit is contained in:
honglei 2023-08-25 21:32:11 +08:00
parent aa3325bb54
commit e8247308fc

View File

@ -58,7 +58,7 @@ else:
if sys.version_info >= (3, 9):
from typing import Annotated
else:
from typing_extensions import Annotated
from typing_extensions import Annotated, _AnnotatedAlias
_T = TypeVar("_T")
NoArgAnyCallable = Callable[[], Any]