표현식에 지정된 타깃 타입이 이미 있는 경우 불필요한 typing.cast 호출을 보고합니다.

예:


from typing import cast

a: int
b = cast(int, a)  # 불필요합니다. a는 이미 int입니다