Sasha Lopoukhine

Results 1 issues of Sasha Lopoukhine

``` python from typing import Literal, TypeGuard, TypeVar T = TypeVar("T") def isa_literal(obj: object, t: type[T]) -> TypeGuard[T]: assert False a = isa_literal("string", Literal["string"]) # Argument of type "type[Literal['string']]" cannot...

type checking