타겟 유형이 이미 지정된 경우 typing.cast를 불필요하게 호출하는 것을 보고합니다.
예:
from typing import cast a: int b = cast(int, a) # 불필요함, a는 이미 int입니다