basedmypy icon indicating copy to clipboard operation
basedmypy copied to clipboard

generic type alias contains `Any`

Open KotlinIsland opened this issue 2 years ago • 0 comments

from typing import TypeAlias, TypeVar

T = TypeVar('T', bound=bool)
ListBool: TypeAlias = list[T]   # expression contains Any  (has type "type[list[Any]]")

KotlinIsland avatar Jun 26 '23 13:06 KotlinIsland